blob: c1b058df775a5cd9130d19702a4f2a3159c69d1c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
#ifndef TGBOT_USERCHATBOOSTS_H
#define TGBOT_USERCHATBOOSTS_H
#include "tgbot/types/ChatBoost.h"
#include <memory>
#include <vector>
namespace TgBot {
/**
* @brief This object represents a list of boosts added to a chat by a user.
*
* @ingroup types
*/
class UserChatBoosts {
public:
typedef std::shared_ptr<UserChatBoosts> Ptr;
/**
* @brief The list of boosts added to the chat by the user
*/
std::vector<ChatBoost::Ptr> boosts;
};
}
#endif //TGBOT_USERCHATBOOSTS_H
|