mirror of https://github.com/oxen-io/session-ios
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
779 B
Objective-C
27 lines
779 B
Objective-C
//
|
|
// Copyright (c) 2018 Open Whisper Systems. All rights reserved.
|
|
//
|
|
|
|
#import <SignalUtilitiesKit/OWSRecipientIdentity.h>
|
|
#import <SignalUtilitiesKit/TSInfoMessage.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@class TSThread;
|
|
|
|
@interface OWSVerificationStateChangeMessage : TSInfoMessage
|
|
|
|
@property (nonatomic, readonly) NSString *recipientId;
|
|
@property (nonatomic, readonly) OWSVerificationState verificationState;
|
|
@property (nonatomic, readonly) BOOL isLocalChange;
|
|
|
|
- (instancetype)initWithTimestamp:(uint64_t)timestamp
|
|
thread:(TSThread *)thread
|
|
recipientId:(NSString *)recipientId
|
|
verificationState:(OWSVerificationState)verificationState
|
|
isLocalChange:(BOOL)isLocalChange;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|