View Source Telegex.Type.InlineQueryResultMpeg4Gif (Telegex v1.8.0)

Represents a link to a video animation (H.264/MPEG-4 AVC video without sound). By default, this animated MPEG-4 file will be sent by the user with optional caption. Alternatively, you can use input_message_content to send a message with the specified content instead of the animation.

Summary

Types

@type t() :: %Telegex.Type.InlineQueryResultMpeg4Gif{
  caption: String.t() | nil,
  caption_entities: [Telegex.Type.MessageEntity.t()] | nil,
  id: String.t(),
  input_message_content: Telegex.Type.InputMessageContent.t() | nil,
  mpeg4_duration: integer() | nil,
  mpeg4_height: integer() | nil,
  mpeg4_url: String.t(),
  mpeg4_width: integer() | nil,
  parse_mode: String.t() | nil,
  reply_markup: Telegex.Type.InlineKeyboardMarkup.t() | nil,
  show_caption_above_media: boolean() | nil,
  thumbnail_mime_type: String.t() | nil,
  thumbnail_url: String.t(),
  title: String.t() | nil,
  type: String.t()
}