]>
Commit | Line | Data |
---|---|---|
b54c578e A |
1 | #import <IDS/IDS.h> |
2 | ||
3 | @interface OTPairingPacketContext : NSObject | |
4 | - (instancetype)initWithMessage:(NSDictionary *)message fromID:(NSString *)fromID context:(IDSMessageContext *)context; | |
5 | @property (readonly, atomic) enum OTPairingIDSMessageType messageType; | |
6 | @property (readonly, atomic) NSString *sessionIdentifier; | |
7 | @property (readonly, atomic) NSData *packetData; | |
8 | @property (readonly, atomic) NSError *error; | |
9 | @property (readonly, atomic) NSString *incomingResponseIdentifier; | |
10 | @property (readonly, atomic) NSString *outgoingResponseIdentifier; | |
11 | @property (readonly, atomic) NSString *fromID; | |
12 | @end |