View Source ExGram.Model.InlineQueryResultGif (ex_gram v0.52.1)

Represents a link to an animated GIF file. By default, this animated GIF 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.

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

Summary

Types

@type t() :: %ExGram.Model.InlineQueryResultGif{
  caption: String.t() | nil,
  caption_entities: [ExGram.Model.MessageEntity.t()] | nil,
  gif_duration: integer() | nil,
  gif_height: integer() | nil,
  gif_url: String.t(),
  gif_width: integer() | nil,
  id: String.t(),
  input_message_content: ExGram.Model.InputMessageContent.t() | nil,
  parse_mode: String.t() | nil,
  reply_markup: ExGram.Model.InlineKeyboardMarkup.t() | nil,
  thumbnail_mime_type: String.t() | nil,
  thumbnail_url: String.t(),
  title: String.t() | nil,
  type: String.t()
}

Functions