tgbot-cpp
Loading...
Searching...
No Matches
ReactionCount.h
Go to the documentation of this file.
1#ifndef TGBOT_REACTIONCOUNT_H
2#define TGBOT_REACTIONCOUNT_H
3
5
6#include <cstdint>
7#include <memory>
8
9namespace TgBot {
10
17
18public:
19 typedef std::shared_ptr<ReactionCount> Ptr;
20
25
29 std::int32_t totalCount;
30};
31}
32
33#endif //TGBOT_REACTIONCOUNT_H
Represents a reaction added to a message along with the number of times it was added.
ReactionType::Ptr type
Type of the reaction.
std::shared_ptr< ReactionCount > Ptr
std::int32_t totalCount
Number of times the reaction was added.
std::shared_ptr< ReactionType > Ptr
Definition Api.h:40