hank
2017-06-14 a0a84333e64f1e94ae9d0f69545037c60e781842
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