commit | author | age
|
a0a843
|
1 |
// |
H |
2 |
// TWTRTweetCashtagEntity.h |
|
3 |
// TwitterKit |
|
4 |
// |
|
5 |
// Copyright © 2016 Twitter. All rights reserved. |
|
6 |
// |
|
7 |
|
|
8 |
#import <TwitterKit/TWTRJSONConvertible.h> |
|
9 |
#import "TWTRTweetEntity.h" |
|
10 |
|
|
11 |
NS_ASSUME_NONNULL_BEGIN |
|
12 |
|
|
13 |
/** |
|
14 |
* A Tweet entity which represents a Cashtag like '$twtr' |
|
15 |
*/ |
|
16 |
@interface TWTRTweetCashtagEntity : TWTRTweetEntity <NSCoding, TWTRJSONConvertible> |
|
17 |
|
|
18 |
/** |
|
19 |
* The text represented by this entity. |
|
20 |
* @note This entity does not include the '$'. |
|
21 |
*/ |
|
22 |
@property (nonatomic, copy, readonly) NSString *text; |
|
23 |
|
|
24 |
@end |
|
25 |
|
|
26 |
NS_ASSUME_NONNULL_END |