tgbot-cpp
Loading...
Searching...
No Matches
ReactionType.h
Go to the documentation of this file.
1#ifndef TGBOT_REACTIONTYPE_H
2#define TGBOT_REACTIONTYPE_H
3
4#include <memory>
5#include <string>
6
7namespace TgBot {
8
19
20public:
21 typedef std::shared_ptr<ReactionType> Ptr;
22
24
25 virtual ~ReactionType() {}
26
30 std::string type;
31};
32}
33
34#endif //TGBOT_REACTIONTYPE_H
This object describes the type of a reaction.
std::string type
Type of the reaction.
std::shared_ptr< ReactionType > Ptr
virtual ~ReactionType()
Definition Api.h:40