mirror of
https://github.com/danog/Telegram.git
synced 2024-12-03 09:57:46 +01:00
13 lines
435 B
Objective-C
13 lines
435 B
Objective-C
#import <Foundation/Foundation.h>
|
|
|
|
@interface TGBotContextResult : NSObject
|
|
|
|
@property (nonatomic, readonly) int64_t queryId;
|
|
@property (nonatomic, strong, readonly) NSString *resultId;
|
|
@property (nonatomic, strong, readonly) NSString *type;
|
|
@property (nonatomic, strong, readonly) id sendMessage;
|
|
|
|
- (instancetype)initWithQueryId:(int64_t)queryId resultId:(NSString *)resultId type:(NSString *)type sendMessage:(id)sendMessage;
|
|
|
|
@end
|