Sha256: a25b47e2688cedb50c4fc154c3b96107df264257a84b1e45202940dfd5f2efb1

Contents?: true

Size: 528 Bytes

Versions: 1

Compression:

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