blob: 93a879612511f38b994b74c668998cac2a6aaf67 (
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
|
#ifndef TGBOT_CHATBOOSTADDED_H
#define TGBOT_CHATBOOSTADDED_H
#include <cstdint>
#include <memory>
namespace TgBot {
/**
* @brief This object represents a service message about a user boosting a chat.
*
* @ingroup types
*/
class ChatBoostAdded {
public:
typedef std::shared_ptr<ChatBoostAdded> Ptr;
/**
* @brief Number of boosts added by the user
*/
std::int32_t boostCount;
};
}
#endif //TGBOT_CHATBOOSTADDED_H
|