mirror of
https://github.com/danog/Telegram.git
synced 2024-12-12 09:29:55 +01:00
15 lines
351 B
C
15 lines
351 B
C
|
#import "TLObject.h"
|
||
|
#import "TLMetaRpc.h"
|
||
|
|
||
|
@class TLInputPeer;
|
||
|
|
||
|
@interface TLRPCmessages_sendMessage_manual : TLMetaRpc
|
||
|
|
||
|
@property (nonatomic) int32_t flags;
|
||
|
@property (nonatomic, strong) TLInputPeer *peer;
|
||
|
@property (nonatomic) int32_t reply_to_msg_id;
|
||
|
@property (nonatomic, strong) NSString *message;
|
||
|
@property (nonatomic) int64_t random_id;
|
||
|
|
||
|
@end
|