hank
2017-06-14 a0a84333e64f1e94ae9d0f69545037c60e781842
commit | author | age
a0a843 1 //
H 2 //  TWTRTweetUserMentionEntity.h
3 //
4 //  Copyright (c) 2016 Twitter. All rights reserved.
5 //
6
7 #import <TwitterKit/TWTRJSONConvertible.h>
8 #import "TWTRTweetEntity.h"
9
10 NS_ASSUME_NONNULL_BEGIN
11
12 /**
13  * A Tweet entity which represents a user mention.
14  */
15 @interface TWTRTweetUserMentionEntity : TWTRTweetEntity <NSCoding, TWTRJSONConvertible>
16
17 /**
18  * The userID of the user whom ha   s been mentioned.
19  */
20 @property (nonatomic, copy, readonly) NSString *userID;
21
22 /**
23  * The name of the user whom has been mentioned.
24  */
25 @property (nonatomic, copy, readonly) NSString *name;
26
27 /**
28  * The screen name of the user whom has been mentioned.
29  */
30 @property (nonatomic, copy, readonly) NSString *screenName;
31
32 @end
33
34 NS_ASSUME_NONNULL_END