Sha256: d7d71726f1bc7e77fe6fa8d9ab17794910f8110677581e0a948ba6a0e7d97085

Contents?: true

Size: 343 Bytes

Versions: 3

Compression:

Stored size: 343 Bytes

Contents

# frozen_string_literal: true

module Telegram
  module Bot
    module Types
      class InlineQueryResultGame < Base
        attribute :type, Types::String.default('game')
        attribute :id, Types::String
        attribute :game_short_name, Types::String
        attribute? :reply_markup, InlineKeyboardMarkup
      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_game.rb
telegram-bot-ruby-1.0.0.rc1 lib/telegram/bot/types/inline_query_result_game.rb
telegram-bot-ruby-1.0.0.pre lib/telegram/bot/types/inline_query_result_game.rb