#ifndef TGBOT_BOTCOMMANDSCOPEALLPRIVATECHATS_H #define TGBOT_BOTCOMMANDSCOPEALLPRIVATECHATS_H #include "tgbot/types/BotCommandScope.h" #include namespace TgBot { /** * @brief Represents the scope of bot commands, covering all private chats. * * @ingroup types */ class BotCommandScopeAllPrivateChats : public BotCommandScope { public: static const std::string TYPE; typedef std::shared_ptr Ptr; BotCommandScopeAllPrivateChats() { this->type = TYPE; } }; } #endif //TGBOT_BOTCOMMANDSCOPEALLPRIVATECHATS_H