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
15
16public:
17 typedef std::shared_ptr<WebAppInfo> Ptr;
18
22 std::string url;
23};
24}
25
26#endif //TGBOT_WEBAPPINFO_H
Contains information about a Web App.
Definition WebAppInfo.h:14
std::shared_ptr< WebAppInfo > Ptr
Definition WebAppInfo.h:17
std::string url
An HTTPS URL of a Web App to be opened with additional data as specified in https://core....
Definition WebAppInfo.h:22
Definition Api.h:39