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
41
42public:
43 typedef std::shared_ptr<InlineQueryResult> Ptr;
44
46
47 virtual ~InlineQueryResult() { }
48
52 std::string type;
53
57 std::string id;
58
63};
64}
65
66#endif //TGBOT_INLINEQUERYRESULT_H
std::shared_ptr< InlineKeyboardMarkup > Ptr
This object represents one result of an inline query.
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:40