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

Represents a link to a voice message stored on the Telegram servers. By default, this voice message will be sent by the user. Alternatively, you can use input_message_content to send a message with the specified content instead of the voice message.

Summary

Types

@type t() :: %Telegex.Type.InlineQueryResultCachedVoice{
  caption: String.t() | nil,
  caption_entities: [Telegex.Type.MessageEntity.t()] | nil,
  id: String.t(),
  input_message_content: Telegex.Type.InputMessageContent.t() | nil,
  parse_mode: String.t() | nil,
  reply_markup: Telegex.Type.InlineKeyboardMarkup.t() | nil,
  title: String.t(),
  type: String.t(),
  voice_file_id: String.t()
}