tgbot-cpp
Loading...
Searching...
No Matches
ChatBoostSource.h
Go to the documentation of this file.
1#ifndef TGBOT_CHATBOOSTSOURCE_H
2#define TGBOT_CHATBOOSTSOURCE_H
3
4#include "tgbot/types/User.h"
5
6#include <memory>
7#include <string>
8
9namespace TgBot {
10
22
23public:
24 typedef std::shared_ptr<ChatBoostSource> Ptr;
25
27
28 virtual ~ChatBoostSource() {}
29
33 std::string source;
34
39};
40}
41
42#endif //TGBOT_CHATBOOSTSOURCE_H
This object describes the source of a chat boost.
std::shared_ptr< ChatBoostSource > Ptr
std::string source
Source of the boost.
std::shared_ptr< User > Ptr
Definition User.h:18
Definition Api.h:40