Sha256: 978240661449d6b870d7ef5262faabf340d194686dbc30979fd6a2b115036c57

Contents?: true

Size: 491 Bytes

Versions: 1

Compression:

Stored size: 491 Bytes

Contents

# frozen_string_literal: true

module Telegram
  module Bot
    module Types
      class InlineQueryResultVoice < Base
        attribute :type, String, default: 'voice'
        attribute :id, String
        attribute :voice_url, String
        attribute :title, String
        attribute :caption, String
        attribute :voice_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_voice.rb