#ifndef TGBOT_REACTIONTYPE_H #define TGBOT_REACTIONTYPE_H #include #include namespace TgBot { /** * @brief This object describes the type of a reaction. * * Currently, it can be one of * - ReactionTypeEmoji * - ReactionTypeCustomEmoji * * @ingroup types */ class ReactionType { public: typedef std::shared_ptr Ptr; ReactionType() {} virtual ~ReactionType() {} /** * @brief Type of the reaction */ std::string type; }; } #endif //TGBOT_REACTIONTYPE_H