Sha256: c92b924748e4e64ed7b884ca171c5fc4b7e63fe3ea7ff895be0923242e88a2a5
Contents?: true
Size: 1.13 KB
Versions: 2
Compression:
Stored size: 1.13 KB
Contents
module TD::Types # Represents a link to an opus-encoded audio file within an OGG container, single channel audio. # # @attr id [String] Unique identifier of the query result. # @attr title [String] Title of the voice note. # @attr voice_note_url [String] The URL of the voice note file. # @attr voice_note_duration [Integer] Duration of the voice note, in seconds. # @attr reply_markup [TD::Types::ReplyMarkup] The message reply markup. # Must be of type {TD::Types::ReplyMarkup::InlineKeyboard} or null. # @attr input_message_content [TD::Types::InputMessageContent] The content of the message to be sent. # Must be one of the following types: InputMessageText, InputMessageVoiceNote, InputMessageLocation, # InputMessageVenue or InputMessageContact. class InputInlineQueryResult::VoiceNote < InputInlineQueryResult attribute :id, TD::Types::String attribute :title, TD::Types::String attribute :voice_note_url, TD::Types::String attribute :voice_note_duration, TD::Types::Integer attribute :reply_markup, TD::Types::ReplyMarkup attribute :input_message_content, TD::Types::InputMessageContent end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
tdlib-ruby-2.2.0 | lib/tdlib/types/input_inline_query_result/voice_note.rb |
tdlib-ruby-2.1.0 | lib/tdlib/types/input_inline_query_result/voice_note.rb |