Sha256: 7a66b963666fc1a81b053aa7bcf2e4f3223b3bda2d4757cea8c7892259dada25

Contents?: true

Size: 693 Bytes

Versions: 1

Compression:

Stored size: 693 Bytes

Contents

# frozen_string_literal: true
require 'vk/api/objects'
require 'vk/schema/namespace'

module Vk
  module API
    class Apps < Vk::Schema::Namespace
      # @see https://github.com/VKCOM/vk-api-schema/blob/master/objects.json
      class Leaderboard < Vk::Schema::Object
        # @return [Integer] Score number
        attribute :score, API::Types::Coercible::Int.optional
        # @return [Integer] Level
        attribute :level, API::Types::Coercible::Int.optional
        # @return [Integer] Points number
        attribute :points, API::Types::Coercible::Int.optional
        # @return [Integer] User ID
        attribute :user_id, API::Types::Coercible::Int
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
vk-0.99.5.53.alpha lib/vk/api/apps/leaderboard.rb