tgbot-cpp
Loading...
Searching...
No Matches
WebAppInfo.h
Go to the documentation of this file.
1#ifndef TGBOT_WEBAPPINFO_H
2#define TGBOT_WEBAPPINFO_H
3
4#include <memory>
5#include <string>
6
7namespace TgBot {
8
17
18public:
19 typedef std::shared_ptr<WebAppInfo> Ptr;
20
24 std::string url;
25};
26}
27
28#endif //TGBOT_WEBAPPINFO_H
Describes a Web App.
Definition WebAppInfo.h:16
std::shared_ptr< WebAppInfo > Ptr
Definition WebAppInfo.h:19
std::string url
An HTTPS URL of a Web App to be opened with additional data as specified in Initializing Web Apps (ht...
Definition WebAppInfo.h:24
Definition Api.h:40