tgbot-cpp
Loading...
Searching...
No Matches
InlineQueryResultCachedVideo.h
Go to the documentation of this file.
1#ifndef TGBOT_INLINEQUERYRESULTCACHEDVIDEO_H
2#define TGBOT_INLINEQUERYRESULTCACHEDVIDEO_H
3
7
8#include <string>
9#include <memory>
10#include <vector>
11
12namespace TgBot {
13
22public:
23 static const std::string TYPE;
24
25 typedef std::shared_ptr<InlineQueryResultCachedVideo> Ptr;
26
30
34 std::string videoFileId;
35
39 std::string title;
40
44 std::string description;
45
49 std::string caption;
50
55 std::string parseMode;
56
60 std::vector<MessageEntity::Ptr> captionEntities;
61
66};
67}
68
69#endif //TGBOT_INLINEQUERYRESULTCACHEDVIDEO_H
Represents a link to a video file stored on the Telegram servers. By default, this video file will be...
std::string caption
Optional. Caption of the video to be sent, 0-1024 characters after entities parsing.
InputMessageContent::Ptr inputMessageContent
Optional. Content of the message to be sent instead of the video.
std::vector< MessageEntity::Ptr > captionEntities
Optional. List of special entities that appear in the caption, which can be specified instead of pars...
std::shared_ptr< InlineQueryResultCachedVideo > Ptr
std::string description
Optional. Short description of the result.
std::string videoFileId
A valid file identifier for the video file.
std::string parseMode
Optional. Mode for parsing entities in the video caption. See https://core.telegram....
This abstract class is base of all inline query results.
std::string type
Type of the result.
std::shared_ptr< InputMessageContent > Ptr
Definition Api.h:39