Sha256: 448763f2899f49e27403d7b92e1c4a2ed5b23f028e70c7028d66ed309fe6a91c

Contents?: true

Size: 528 Bytes

Versions: 1

Compression:

Stored size: 528 Bytes

Contents

# frozen_string_literal: true

module Telegram
  module Bot
    module Types
      class InlineQueryResultAudio < Base
        attribute :type, String, default: 'audio'
        attribute :id, String
        attribute :audio_url, String
        attribute :title, String
        attribute :caption, String
        attribute :performer, String
        attribute :audio_duration, Integer
        attribute :reply_markup, InlineKeyboardMarkup
        attribute :input_message_content, InputMessageContent
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
telegram-bot-types-0.6.2 lib/telegram/bot/types/inline_query_result_audio.rb