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 <memory>
7#include <string>
8
9namespace TgBot {
10
17
18public:
19 static const std::string TYPE;
20
21 typedef std::shared_ptr<InlineQueryResultGame> Ptr;
22
24 this->type = TYPE;
25 }
26
30 std::string gameShortName;
31};
32}
33
34#endif //TGBOT_INLINEQUERYRESULTGAME_H
std::string gameShortName
Short name of the game.
static const std::string TYPE
std::shared_ptr< InlineQueryResultGame > Ptr
This object represents one result of an inline query.
std::string type
Type of the result.
Definition Api.h:40