View Source ExGram.Model.InlineQueryResultAudio (ex_gram v0.53.0)
Represents a link to an MP3 audio file. By default, this audio file will be sent by the user. Alternatively, you can use input_message_content to send a message with the specified content instead of the audio.
Check the documentation of this model in https://core.telegram.org/bots/api#inlinequeryresultaudio
Summary
Types
@type t() :: %ExGram.Model.InlineQueryResultAudio{ audio_duration: integer() | nil, audio_url: String.t(), 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, performer: String.t() | nil, reply_markup: ExGram.Model.InlineKeyboardMarkup.t() | nil, title: String.t(), type: String.t() }