mirror of
https://github.com/danog/Telegram.git
synced 2024-12-03 09:57:46 +01:00
24 lines
737 B
Objective-C
24 lines
737 B
Objective-C
#import "TLMessage.h"
|
|
|
|
@class TLReplyMarkup;
|
|
@class TLPeer;
|
|
@class TLMessageFwdHeader;
|
|
|
|
@interface TLMessage$modernMessage : TLMessage
|
|
|
|
@property (nonatomic) int32_t flags;
|
|
@property (nonatomic) int32_t from_id;
|
|
@property (nonatomic, retain) TLPeer *to_id;
|
|
@property (nonatomic, strong) TLMessageFwdHeader *fwd_header;
|
|
@property (nonatomic) int32_t via_bot_id;
|
|
@property (nonatomic) int32_t reply_to_msg_id;
|
|
@property (nonatomic) int32_t date;
|
|
@property (nonatomic, retain) NSString *message;
|
|
@property (nonatomic, retain) TLMessageMedia *media;
|
|
@property (nonatomic, retain) TLReplyMarkup *replyMarkup;
|
|
@property (nonatomic, retain) NSArray *entities;
|
|
@property (nonatomic) int32_t views;
|
|
@property (nonatomic) int32_t edit_date;
|
|
|
|
@end
|