Sha256: 74c26c29a8f3e4a93afcce717c93b7a6955abaa6386f6055d5da9db3886fc019

Contents?: true

Size: 570 Bytes

Versions: 3

Compression:

Stored size: 570 Bytes

Contents

# frozen_string_literal: true

module Telegram
  module Bot
    module Types
      class InlineQueryResultCachedAudio < Base
        attribute :type, Types::String.default('audio')
        attribute :id, Types::String
        attribute :audio_file_id, Types::String
        attribute? :caption, Types::String
        attribute? :parse_mode, Types::String
        attribute? :caption_entities, Types::Array.of(MessageEntity)
        attribute? :reply_markup, InlineKeyboardMarkup
        attribute? :input_message_content, InputMessageContent
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
telegram-bot-ruby-1.0.0 lib/telegram/bot/types/inline_query_result_cached_audio.rb
telegram-bot-ruby-1.0.0.rc1 lib/telegram/bot/types/inline_query_result_cached_audio.rb
telegram-bot-ruby-1.0.0.pre lib/telegram/bot/types/inline_query_result_cached_audio.rb