Sha256: c75c2fe7acaf42c628828151734a568725ff7d2e3f63852c3e50573d8b11569b

Contents?: true

Size: 565 Bytes

Versions: 1

Compression:

Stored size: 565 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 :parse_mode, 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.7.0 lib/telegram/bot/types/inline_query_result_audio.rb