commit | author | age
|
a0a843
|
1 |
// |
H |
2 |
// TWTRSession_Private.h |
|
3 |
// TwitterCore |
|
4 |
// |
|
5 |
// Created by Kang Chen on 9/6/15. |
|
6 |
// Copyright (c) 2015 Twitter Inc. All rights reserved. |
|
7 |
// |
|
8 |
|
|
9 |
#import <TwitterCore/TWTRSession.h> |
|
10 |
|
|
11 |
@interface TWTRSession () |
|
12 |
|
|
13 |
/** |
|
14 |
* Returns YES if the dictionary represents a valid dictionary that can |
|
15 |
* safely be used to instantiate the TWTRSession object. |
|
16 |
*/ |
|
17 |
+ (BOOL)isValidSessionDictionary:(NSDictionary *)dictionary; |
|
18 |
|
|
19 |
/** |
|
20 |
* Returns a new dictionary of the stored tokens and user context. |
|
21 |
*/ |
|
22 |
- (NSDictionary *)dictionaryRepresentation; |
|
23 |
|
|
24 |
@end |