tgbot-cpp
Loading...
Searching...
No Matches
ReplyKeyboardRemove.h
Go to the documentation of this file.
1#ifndef TGBOT_CPP_REPLYKEYBOARDREMOVE_H
2#define TGBOT_CPP_REPLYKEYBOARDREMOVE_H
3
5
6#include <memory>
7
8namespace TgBot {
9
19
20public:
21 typedef std::shared_ptr<ReplyKeyboardRemove> Ptr;
22
28 const bool removeKeyboard = true;
29
35 bool selective = false;
36};
37
38}
39
40#endif //TGBOT_CPP_REPLYKEYBOARDREMOVE_H
This abstract class is base of all keyboard related events.
Upon receiving a message with this object, Telegram clients will remove the current custom keyboard a...
const bool removeKeyboard
Requests clients to remove the custom keyboard (user will not be able to summon this keyboard;.
bool selective
Optional. Use this parameter if you want to remove the keyboard for specific users only....
std::shared_ptr< ReplyKeyboardRemove > Ptr
Definition Api.h:39