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
//
//  TWTRTweetCashtagEntity.h
//  TwitterKit
//
//  Copyright © 2016 Twitter. All rights reserved.
//
 
#import <TwitterKit/TWTRJSONConvertible.h>
#import "TWTRTweetEntity.h"
 
NS_ASSUME_NONNULL_BEGIN
 
/**
 * A Tweet entity which represents a Cashtag like '$twtr'
 */
@interface TWTRTweetCashtagEntity : TWTRTweetEntity <NSCoding, TWTRJSONConvertible>
 
/**
 * The text represented by this entity.
 * @note This entity does not include the '$'.
 */
@property (nonatomic, copy, readonly) NSString *text;
 
@end
 
NS_ASSUME_NONNULL_END