From c8d40dccabaaa406faed6c0797a92bac811c9d0f Mon Sep 17 00:00:00 2001 From: Oleg Morozenkov Date: Tue, 5 Jun 2018 19:07:27 +0300 Subject: Update docs --- docs/_reply_keyboard_remove_8h_source.html | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'docs/_reply_keyboard_remove_8h_source.html') diff --git a/docs/_reply_keyboard_remove_8h_source.html b/docs/_reply_keyboard_remove_8h_source.html index 563569a..be0c3a1 100644 --- a/docs/_reply_keyboard_remove_8h_source.html +++ b/docs/_reply_keyboard_remove_8h_source.html @@ -83,20 +83,20 @@ $(document).ready(function(){initNavTree('_reply_keyboard_remove_8h_source.html'
ReplyKeyboardRemove.h
-Go to the documentation of this file.
1 //
2 // Created by Konstantin Kukin on 26/12/16.
3 //
4 
5 #ifndef TGBOT_CPP_REPLYKEYBOARDREMOVE_H
6 #define TGBOT_CPP_REPLYKEYBOARDREMOVE_H
7 
8 #include <memory>
9 
11 
12 namespace TgBot {
13 
21 
22 public:
23  typedef std::shared_ptr<ReplyKeyboardRemove> Ptr;
24 
29  const bool removeKeyboard = true;
30 
35  bool selective = false;
36 };
37 
38 }
39 
40 #endif //TGBOT_CPP_REPLYKEYBOARDREMOVE_H
Definition: Api.h:46
+Go to the documentation of this file.
1 //
2 // Created by Konstantin Kukin on 26/12/16.
3 //
4 
5 #ifndef TGBOT_CPP_REPLYKEYBOARDREMOVE_H
6 #define TGBOT_CPP_REPLYKEYBOARDREMOVE_H
7 
8 #include <memory>
9 
11 
12 namespace TgBot {
13 
23 
24 public:
25  typedef std::shared_ptr<ReplyKeyboardRemove> Ptr;
26 
32  const bool removeKeyboard = true;
33 
39  bool selective = false;
40 };
41 
42 }
43 
44 #endif //TGBOT_CPP_REPLYKEYBOARDREMOVE_H
Definition: Api.h:47
- - -
std::shared_ptr< ReplyKeyboardRemove > Ptr
- - +
This abstract class is base of all keyboard related events.
Definition: GenericReply.h:34
+
Upon receiving a message with this object, Telegram clients will remove the current custom keyboard a...
+
std::shared_ptr< ReplyKeyboardRemove > Ptr
+
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...