hank
2017-06-14 a0a84333e64f1e94ae9d0f69545037c60e781842
commit | author | age
a0a843 1 //
H 2 //  TWTRTweetHashtagEntity.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 Hashtag like '#twitterkit'
14  */
15 @interface TWTRTweetHashtagEntity : TWTRTweetEntity <NSCoding, TWTRJSONConvertible>
16
17 /**
18  * The text represented by this entity.
19  * @note This entity does not include the '#'.
20  */
21 @property (nonatomic, copy, readonly) NSString *text;
22
23 @end
24
25 NS_ASSUME_NONNULL_END