#ifndef TGBOT_INLINEKEYBOARDMARKUP_H #define TGBOT_INLINEKEYBOARDMARKUP_H #include "tgbot/types/GenericReply.h" #include "tgbot/types/InlineKeyboardButton.h" #include #include namespace TgBot { /** * @brief This object represents an [inline keyboard](https://core.telegram.org/bots/features#inline-keyboards) that appears right next to the message it belongs to. * * @ingroup types */ class InlineKeyboardMarkup : public GenericReply { public: typedef std::shared_ptr Ptr; /** * @brief Array of button rows, each represented by an Array of InlineKeyboardButton objects */ std::vector> inlineKeyboard; }; } #endif //TGBOT_INLINEKEYBOARDMARKUP_H