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

Represents a link to a voice recording in an .OGG container encoded with OPUS. By default, this voice recording will be sent by the user. Alternatively, you can use input_message_content to send a message with the specified content instead of the the voice message.

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

Summary

Types

@type t() :: %ExGram.Model.InlineQueryResultVoice{
  caption: String.t() | nil,
  caption_entities: [ExGram.Model.MessageEntity.t()] | nil,
  id: String.t(),
  input_message_content: ExGram.Model.InputMessageContent.t() | nil,
  parse_mode: String.t() | nil,
  reply_markup: ExGram.Model.InlineKeyboardMarkup.t() | nil,
  title: String.t(),
  type: String.t(),
  voice_duration: integer() | nil,
  voice_url: String.t()
}

Functions