Sha256: df1bed26298f1e0c51b326b84419ce3c36910942d640c039d4515dccb2a413f5
Contents?: true
Size: 1.11 KB
Versions: 1
Compression:
Stored size: 1.11 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::InlineKeyboard, nil] The message reply markup. # @attr input_message_content [TD::Types::InputMessageContent::Text, TD::Types::InputMessageContent::VoiceNote, # TD::Types::InputMessageContent::Location, TD::Types::InputMessageContent::Venue, # TD::Types::InputMessageContent::Contact] The content of the message to be sent. 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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
tdlib-ruby-2.0.0 | lib/tdlib/types/input_inline_query_result/voice_note.rb |