1
0
mirror of https://github.com/danog/Telegram.git synced 2024-12-02 09:27:55 +01:00
Telegram/Telegraph/TLWebPage_manual.h
2015-10-01 19:19:52 +03:00

26 lines
852 B
Objective-C

#import "TLWebPage.h"
@class TLPhoto;
@class TLDocument;
@interface TLWebPage_manual : TLWebPage
@property (nonatomic) int32_t flags;
@property (nonatomic) int64_t n_id;
@property (nonatomic, strong) NSString *url;
@property (nonatomic, strong) NSString *display_url;
@property (nonatomic, strong) NSString *type;
@property (nonatomic, strong) NSString *site_name;
@property (nonatomic, strong) NSString *title;
@property (nonatomic, strong) NSString *n_description;
@property (nonatomic, strong) TLPhoto *photo;
@property (nonatomic, strong) NSString *embed_url;
@property (nonatomic, strong) NSString *embed_type;
@property (nonatomic) int32_t embed_width;
@property (nonatomic) int32_t embed_height;
@property (nonatomic) int32_t duration;
@property (nonatomic, strong) NSString *author;
@property (nonatomic, strong) TLDocument *document;
@end