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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
//
//  TWTRUser.h
//
//  Copyright (c) 2015 Twitter. All rights reserved.
//
 
#import <Foundation/Foundation.h>
#import <TwitterKit/TWTRJSONConvertible.h>
 
NS_ASSUME_NONNULL_BEGIN
 
/**
 *  Represents a user on Twitter.
 */
@interface TWTRUser : NSObject <NSCoding, NSCopying, TWTRJSONConvertible>
 
#pragma mark - Properties
 
/**
 *  The ID of the Twitter User.
 */
@property (nonatomic, copy, readonly) NSString *userID;
 
/**
 *  The user's name as it appears on their profile.
 *
 *  @warning This can be modified by the user at any time.
 */
@property (nonatomic, copy, readonly) NSString *name;
 
/**
 *  The user's username on Twitter.
 *
 *  @warning This can be modified by the user at any time.
 */
@property (nonatomic, copy, readonly) NSString *screenName;
 
/**
 *  Whether the user has been verified by Twitter.
 */
@property (nonatomic, readonly) BOOL isVerified;
 
/**
 *  Whether the user is protected.
 */
@property (nonatomic, readonly) BOOL isProtected;
 
/**
 *  The HTTPS URL of the user's profile image.
 */
@property (nonatomic, copy, readonly) NSString *profileImageURL;
 
/**
 *  The URL of a smaller version of the user's profile image.
 */
@property (nonatomic, copy, readonly) NSString *profileImageMiniURL;
 
/**
 *  The URL of a larger version of the user's profile image.
 */
@property (nonatomic, copy, readonly) NSString *profileImageLargeURL;
 
/**
 *  The formatted version of the user's `screenName` with the `@` sign for display purposes.
 */
@property (nonatomic, copy, readonly) NSString *formattedScreenName;
 
/**
 * Returns the URL for deeplinking to the the user's profile.
 */
@property (nonatomic, copy, readonly) NSURL *profileURL;
 
@end
 
NS_ASSUME_NONNULL_END