Skip to content

Latest commit

 

History

History
36 lines (30 loc) · 1.5 KB

InlineQueryResultVoice.md

File metadata and controls

36 lines (30 loc) · 1.5 KB

TelegramBotOpenapi::InlineQueryResultVoice

Properties

Name Type Description Notes
type String Type of the result, must be voice
id String Unique identifier for this result, 1-64 bytes
voice_url String A valid URL for the voice recording
title String Recording title
caption String Optional. Caption, 0-1024 characters after entities parsing [optional]
parse_mode String Optional. Mode for parsing entities in the voice message caption. See formatting options for more details. [optional]
caption_entities Array<MessageEntity> Optional. List of special entities that appear in the caption, which can be specified instead of parse_mode [optional]
voice_duration Integer Optional. Recording duration in seconds [optional]
reply_markup InlineKeyboardMarkup Optional. Inline keyboard attached to the message [optional]
input_message_content Object Optional. Content of the message to be sent instead of the voice recording [optional]

Example

require 'telegram-bot-openapi'

instance = TelegramBotOpenapi::InlineQueryResultVoice.new(
  type: null,
  id: null,
  voice_url: null,
  title: null,
  caption: null,
  parse_mode: null,
  caption_entities: null,
  voice_duration: null,
  reply_markup: null,
  input_message_content: null
)