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
27
28
29
30
31
32
33
34
35
//
//  TWTRTweetUrlEntity.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 URL
 */
@interface TWTRTweetUrlEntity : TWTRTweetEntity <NSCoding, TWTRJSONConvertible>
 
/**
 * The URL to display. This property may be truncated and may
 * not be a valid URL.
 */
@property (nonatomic, copy, readonly) NSString *displayUrl;
 
/**
 * The expanded URL. This property will be a valid URL.
 */
@property (nonatomic, copy, readonly) NSString *expandedUrl;
 
/**
 * The t.co link which will redirect to the original URL.
 */
@property (nonatomic, copy, readonly) NSString *url;
 
@end
 
NS_ASSUME_NONNULL_END