tgbot-cpp
Loading...
Searching...
No Matches
WebAppData.h
Go to the documentation of this file.
1#ifndef TGBOT_WEBAPPDATA_H
2#define TGBOT_WEBAPPDATA_H
3
4#include <memory>
5#include <string>
6
7namespace TgBot {
8
15public:
16 typedef std::shared_ptr<WebAppData> Ptr;
17
22 std::string data;
23
28 std::string buttonText;
29};
30}
31
32#endif //TGBOT_WEBAPPMESSAGE_H
Contains data sent from a Web App to the bot.
Definition WebAppData.h:14
std::string buttonText
Text of the webApp keyboard button, from which the Web App was opened. Be aware that a bad client can...
Definition WebAppData.h:28
std::shared_ptr< WebAppData > Ptr
Definition WebAppData.h:16
std::string data
The data. Be aware that a bad client can send arbitrary data in this field.
Definition WebAppData.h:22
Definition Api.h:39