hank
2017-06-14 3f9b5125cd79f60e878a3f93708d1254048fd1fb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
//
//  TWTRJSONConvertible.h
//  TwitterKit
//
//  Copyright © 2016 Twitter. All rights reserved.
//
 
#import <Foundation/Foundation.h>
 
NS_ASSUME_NONNULL_BEGIN
 
@protocol TWTRJSONConvertible <NSObject>
 
/**
 * Initialize the receiver with its JSON object representation.
 *
 * @param dictionary the JSON object representing this object.
 * @return the fully formed object or nil if the JSON is not valid.
 */
- (nullable instancetype)initWithJSONDictionary:(NSDictionary *)dictionary;
 
@end
 
NS_ASSUME_NONNULL_END