View Source ExGram.Model.InlineQueryResultVideo (ex_gram v0.52.2)

Represents a link to a page containing an embedded video player or a video file. By default, this video file will be sent by the user with an optional caption. Alternatively, you can use input_message_content to send a message with the specified content instead of the video.

Check the documentation of this model in https://core.telegram.org/bots/api#inlinequeryresultvideo

Summary

Types

@type t() :: %ExGram.Model.InlineQueryResultVideo{
  caption: String.t() | nil,
  caption_entities: [ExGram.Model.MessageEntity.t()] | nil,
  description: String.t() | nil,
  id: String.t(),
  input_message_content: ExGram.Model.InputMessageContent.t() | nil,
  mime_type: String.t(),
  parse_mode: String.t() | nil,
  reply_markup: ExGram.Model.InlineKeyboardMarkup.t() | nil,
  thumbnail_url: String.t(),
  title: String.t(),
  type: String.t(),
  video_duration: integer() | nil,
  video_height: integer() | nil,
  video_url: String.t(),
  video_width: integer() | nil
}

Functions