tgbot-cpp
Loading...
Searching...
No Matches
InlineQueryResult.h
Go to the documentation of this file.
1#ifndef TGBOT_INLINEQUERYRESULT_H
2#define TGBOT_INLINEQUERYRESULT_H
3
5
6#include <memory>
7#include <string>
8
9namespace TgBot {
10
19public:
20 typedef std::shared_ptr<InlineQueryResult> Ptr;
21
23
24 virtual ~InlineQueryResult() { }
25
29 std::string type;
30
34 std::string id;
35
40};
41}
42
43#endif //TGBOT_INLINEQUERYRESULT_H
std::shared_ptr< InlineKeyboardMarkup > Ptr
This abstract class is base of all inline query results.
std::string type
Type of the result.
InlineKeyboardMarkup::Ptr replyMarkup
Optional. Inline keyboard attached to the message.
std::string id
Unique identifier for this result, 1-64 bytes.
std::shared_ptr< InlineQueryResult > Ptr
Definition Api.h:39