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 
19 public:
20  typedef std::shared_ptr<InputTextMessageContent> Ptr;
21 
23  InputMessageContent("InputTextMessageContent")
24  {}
25 
29  std::string messageText;
30 
34  std::string parseMode;
35 
40 
42 };
43 }
44 
45 #endif //TGBOT_INPUTTEXTMESSAGECONTENT_H
std::shared_ptr< InputTextMessageContent > Ptr
Definition: Api.h:47
std::string messageText
Text of the message to be sent, 1-4096 characters.
std::string parseMode
Optional. Send Markdown or HTML, if you want Telegram apps to show bold, italic, fixed-width text or ...
This object represents the content of a message to be sent as a result of an inline query...
bool disableWebPagePreview
Optional. Disables link previews for links in the sent message.
Represents the content of a text message to be sent as the result of an inline query.