tgbot-cpp
Loading...
Searching...
No Matches
BusinessIntro.h
Go to the documentation of this file.
1#ifndef TGBOT_BUSINESSINTRO_H
2#define TGBOT_BUSINESSINTRO_H
3
5
6#include <memory>
7#include <string>
8
9namespace TgBot {
10
15
16public:
17 typedef std::shared_ptr<BusinessIntro> Ptr;
18
22 std::string title;
23
27 std::string message;
28
33};
34}
35
36#endif //TGBOT_BUSINESSINTRO_H
std::string message
Optional. Message text of the business intro.
std::shared_ptr< BusinessIntro > Ptr
std::string title
Optional. Title text of the business intro.
Sticker::Ptr sticker
Optional. Sticker of the business intro.
std::shared_ptr< Sticker > Ptr
Definition Sticker.h:22
Definition Api.h:40