tgbot-cpp
InputTextMessageContent.h
Go to the documentation of this file.
1 //
2 // Created by Konstantin Kukin on 26/12/16.
3 //
4 
5 #ifndef TGBOT_INPUTTEXTMESSAGECONTENT_H
6 #define TGBOT_INPUTTEXTMESSAGECONTENT_H
7 
8 #include <memory>
9 #include <string>
10 
11 namespace TgBot {
12 
18 public:
19  typedef std::shared_ptr<InputTextMessageContent> Ptr;
20 
22  InputMessageContent("InputTextMessageContent")
23  {}
24 
28  std::string messageText;
29 
33  std::string parseMode;
34 
39 
41 };
42 }
43 
44 #endif //TGBOT_INPUTTEXTMESSAGECONTENT_H
std::shared_ptr< InputTextMessageContent > Ptr
Definition: Api.h:44