yatbcpp  0.0.1
Yet another Telegram Bot CPP Library
ReplyKeyboardRemove.h
Go to the documentation of this file.
1 //
2 // Created by norbert on 26.08.17.
3 //
4 
5 #ifndef YATBCPP_REPLYKEYBOARDREMOVE_H
6 #define YATBCPP_REPLYKEYBOARDREMOVE_H
7 
8 #include <string>
9 #include <optional>
10 #include "ReplyMarkup.h"
11 
12 namespace yatbcpp{
15  public:
17 
19 
20  void setSelective(const std::optional<bool> &selective);
21 
22  bool isRemove_keyboard() const;
23 
24  const std::optional<bool> &getSelective() const;
25 
26  private:
28  std::optional<bool> selective;
29  };
30 
31 }
32 
33 #endif //YATBCPP_REPLYKEYBOARDREMOVE_H
void setSelective(const std::optional< bool > &selective)
std::optional< bool > selective
Definition: Bot.h:27
const std::optional< bool > & getSelective() const