mirror of
https://github.com/danog/Telegram.git
synced 2024-12-03 09:57:46 +01:00
16 lines
400 B
Objective-C
16 lines
400 B
Objective-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;
|
|
@property (nonatomic, strong) NSArray *entities;
|
|
|
|
@end
|