tgbot-cpp
Loading...
Searching...
No Matches
InlineQueryResultGame.h
Go to the documentation of this file.
1#ifndef TGBOT_INLINEQUERYRESULTGAME_H
2#define TGBOT_INLINEQUERYRESULTGAME_H
3
5
6#include <string>
7#include <memory>
8
9namespace TgBot {
10
17public:
18 static const std::string TYPE;
19
20 typedef std::shared_ptr<InlineQueryResultGame> Ptr;
21
23 this->type = TYPE;
24 }
25
29 std::string gameShortName;
30};
31}
32
33#endif //TGBOT_INLINEQUERYRESULTGAME_H
std::string gameShortName
Short name of the game.
static const std::string TYPE
std::shared_ptr< InlineQueryResultGame > Ptr
This abstract class is base of all inline query results.
std::string type
Type of the result.
Definition Api.h:39