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