tgbot-cpp
Loading...
Searching...
No Matches
BotDescription.h
Go to the documentation of this file.
1#ifndef TGBOT_BOTDESCRIPTION_H
2#define TGBOT_BOTDESCRIPTION_H
3
4#include <memory>
5#include <string>
6
7namespace TgBot {
8
15public:
16 typedef std::shared_ptr<BotDescription> Ptr;
17
21 std::string description;
22};
23}
24
25#endif //TGBOT_BOTDESCRIPTION_H
This object represents the bot's description.
std::string description
The bot's description.
std::shared_ptr< BotDescription > Ptr
Definition Api.h:40