Sha256: 5652ec1a4a84d490a786ffed8398a9059e6424dab38d154cc333ee34c780651d

Contents?: true

Size: 385 Bytes

Versions: 4

Compression:

Stored size: 385 Bytes

Contents

module TD::Types
  # Contains one row of the game high score table.
  #
  # @attr position [Integer] Position in the high score table.
  # @attr user_id [Integer] User identifier.
  # @attr score [Integer] User score.
  class GameHighScore < Base
    attribute :position, TD::Types::Integer
    attribute :user_id, TD::Types::Integer
    attribute :score, TD::Types::Integer
  end
end

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
tdlib-schema-1.7.0.1 lib/tdlib/types/game_high_score.rb
tdlib-ruby-2.2.0 lib/tdlib/types/game_high_score.rb
tdlib-ruby-2.1.0 lib/tdlib/types/game_high_score.rb
tdlib-ruby-2.0.0 lib/tdlib/types/game_high_score.rb