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
25
26
27
28
29
30
31
32
33
34
//
//  TWTRTweetUserMentionEntity.h
//
//  Copyright (c) 2016 Twitter. All rights reserved.
//
 
#import <TwitterKit/TWTRJSONConvertible.h>
#import "TWTRTweetEntity.h"
 
NS_ASSUME_NONNULL_BEGIN
 
/**
 * A Tweet entity which represents a user mention.
 */
@interface TWTRTweetUserMentionEntity : TWTRTweetEntity <NSCoding, TWTRJSONConvertible>
 
/**
 * The userID of the user whom ha   s been mentioned.
 */
@property (nonatomic, copy, readonly) NSString *userID;
 
/**
 * The name of the user whom has been mentioned.
 */
@property (nonatomic, copy, readonly) NSString *name;
 
/**
 * The screen name of the user whom has been mentioned.
 */
@property (nonatomic, copy, readonly) NSString *screenName;
 
@end
 
NS_ASSUME_NONNULL_END