tgbot-cpp
Loading...
Searching...
No Matches
SwitchInlineQueryChosenChat.h
Go to the documentation of this file.
1#ifndef TGBOT_SWITCHINLINEQUERYCHOSENCHAT_H
2#define TGBOT_SWITCHINLINEQUERYCHOSENCHAT_H
3
4#include <memory>
5#include <string>
6
7namespace TgBot {
8
15
16public:
17 typedef std::shared_ptr<SwitchInlineQueryChosenChat> Ptr;
18
22 std::string query;
23
28
33
38
43};
44}
45
46#endif //TGBOT_SWITCHINLINEQUERYCHOSENCHAT_H
This object represents an inline button that switches the current user to inline mode in a chosen cha...
std::shared_ptr< SwitchInlineQueryChosenChat > Ptr
bool allowChannelChats
Optional. True, if channel chats can be chosen.
std::string query
Optional. The default inline query to be inserted in the input field. If left empty,...
bool allowGroupChats
Optional. True, if group and supergroup chats can be chosen.
bool allowBotChats
Optional. True, if private chats with bots can be chosen.
bool allowUserChats
Optional. True, if private chats with users can be chosen.
Definition Api.h:40