22 lines
544 B
Objective-C
22 lines
544 B
Objective-C
//
|
|
// Copyright (c) 2017 Open Whisper Systems. All rights reserved.
|
|
//
|
|
|
|
#import "OWSOutgoingSyncMessage.h"
|
|
#import "OWSRecipientIdentity.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface OWSVerificationStateSyncMessage : OWSOutgoingSyncMessage
|
|
|
|
- (void)addVerificationState:(OWSVerificationState)verificationState
|
|
identityKey:(NSData *)identityKey
|
|
recipientId:(NSString *)recipientId;
|
|
|
|
// Returns the list of recipient ids referenced in this message.
|
|
- (NSArray<NSString *> *)recipientIds;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|