class TelegramBot::InlineQueryResultCachedVideo

Defined in:

telegram_bot/types/inline/inline_query_result_cached_video.cr

Constant Summary

FIELDS = {type: {type: String, mustbe: "video"}, id: String, video_file_id: String, title: String, caption: {type: String, nilable: true}, description: {type: String, nilable: true}, reply_markup: {type: InlineKeyboardMarkup, nilable: true}, input_message_content: {type: InputMessageContent, nilable: true}}

Constructors

Constructor Detail

def self.new(id : String, video_file_id : String, title : String, caption : String | Nil = nil, description : String | Nil = nil, reply_markup : InlineKeyboardMarkup | Nil = nil, input_message_content : InputMessageContent | Nil = nil) #

[View source]