tgbot-cpp
Loading...
Searching...
No Matches
ReactionTypeCustomEmoji.h
Go to the documentation of this file.
1#ifndef TGBOT_REACTIONTYPECUSTOMEMOJI_H
2#define TGBOT_REACTIONTYPECUSTOMEMOJI_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<ReactionTypeCustomEmoji> Ptr;
22
24 this->type = TYPE;
25 }
26
30 std::string customEmojiId;
31};
32}
33
34#endif //TGBOT_REACTIONTYPECUSTOMEMOJI_H
The reaction is based on a custom emoji.
std::string customEmojiId
Custom emoji identifier.
std::shared_ptr< ReactionTypeCustomEmoji > Ptr
This object describes the type of a reaction.
std::string type
Type of the reaction.
Definition Api.h:40