mirror of
https://github.com/danog/Telegram.git
synced 2024-12-11 17:09:46 +01:00
21 lines
591 B
C
21 lines
591 B
C
|
#import "TLUpdates.h"
|
||
|
|
||
|
@class TLPeer;
|
||
|
|
||
|
@interface TLUpdates$modernUpdateShortChatMessage : TLUpdates
|
||
|
|
||
|
@property (nonatomic) int32_t flags;
|
||
|
@property (nonatomic) int32_t n_id;
|
||
|
@property (nonatomic) int32_t from_id;
|
||
|
@property (nonatomic) int32_t chat_id;
|
||
|
@property (nonatomic) NSString *message;
|
||
|
@property (nonatomic) int32_t pts;
|
||
|
@property (nonatomic) int32_t pts_count;
|
||
|
@property (nonatomic) int32_t date;
|
||
|
@property (nonatomic) TLPeer *fwd_from_id;
|
||
|
@property (nonatomic) int32_t fwd_date;
|
||
|
@property (nonatomic) int32_t reply_to_msg_id;
|
||
|
@property (nonatomic, strong) NSArray *entities;
|
||
|
|
||
|
@end
|