tgbot-cpp
Loading...
Searching...
No Matches
UserChatBoosts.h
Go to the documentation of this file.
1#ifndef TGBOT_USERCHATBOOSTS_H
2#define TGBOT_USERCHATBOOSTS_H
3
5
6#include <memory>
7#include <vector>
8
9namespace TgBot {
10
17
18public:
19 typedef std::shared_ptr<UserChatBoosts> Ptr;
20
24 std::vector<ChatBoost::Ptr> boosts;
25};
26}
27
28#endif //TGBOT_USERCHATBOOSTS_H
This object represents a list of boosts added to a chat by a user.
std::shared_ptr< UserChatBoosts > Ptr
std::vector< ChatBoost::Ptr > boosts
The list of boosts added to the chat by the user.
Definition Api.h:40