blob: 567f97bfea8a78bee841704335995b2840ea86e2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#ifndef TGBOT_SENTWEBAPPMESSAGE_H
#define TGBOT_SENTWEBAPPMESSAGE_H
#include <memory>
#include <string>
namespace TgBot {
/**
* @brief Contains information about an inline message sent by a Web App on behalf of a user.
*
* @ingroup types
*/
class SentWebAppMessage {
public:
typedef std::shared_ptr<SentWebAppMessage> Ptr;
/**
* @brief Optional. Identifier of the sent inline message.
* Available only if there is an inline keyboard attached to the message.
*/
std::string inlineMessageId;
};
}
#endif //TGBOT_SENTWEBAPPMESSAGE_H
|