1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
| //
| // TWTRAuthSession.h
| //
| // Copyright (c) 2015 Twitter. All rights reserved.
| //
|
| #import <Foundation/Foundation.h>
|
| NS_ASSUME_NONNULL_BEGIN
|
| /**
| * The base session which all sessions must conform to.
| */
| @protocol TWTRBaseSession <NSObject, NSCoding>
| @end
|
| /**
| * Encapsulates the authorization details of an OAuth Session.
| */
| @protocol TWTRAuthSession <TWTRBaseSession>
|
| @property (nonatomic, readonly, copy) NSString *authToken;
| @property (nonatomic, readonly, copy) NSString *authTokenSecret;
| @property (nonatomic, readonly, copy) NSString *userID;
|
| @end
|
| NS_ASSUME_NONNULL_END
|
|