tgbot-cpp
Loading...
Searching...
No Matches
ReactionTypeEmoji.h
Go to the documentation of this file.
1#ifndef TGBOT_REACTIONTYPEEMOJI_H
2#define TGBOT_REACTIONTYPEEMOJI_H
3
5
6#include <memory>
7#include <string>
8
9namespace TgBot {
10
17
18public:
19 static const std::string TYPE;
20
21 typedef std::shared_ptr<ReactionTypeEmoji> Ptr;
22
24 this->type = TYPE;
25 }
26
34 std::string emoji;
35};
36}
37
38#endif //TGBOT_REACTIONTYPEEMOJI_H
The reaction is based on an emoji.
std::shared_ptr< ReactionTypeEmoji > Ptr
static const std::string TYPE
std::string emoji
Reaction emoji.
This object describes the type of a reaction.
std::string type
Type of the reaction.
Definition Api.h:40