Sha256: 7523747402beee89090476f52efdad926539e22ef430c6bb9e4e41892c57d984

Contents?: true

Size: 418 Bytes

Versions: 3

Compression:

Stored size: 418 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::Coercible::Integer
    attribute :user_id, TD::Types::Coercible::Integer
    attribute :score, TD::Types::Coercible::Integer
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
tdlib-schema-1.7.0.4 lib/tdlib/types/game_high_score.rb
tdlib-schema-1.7.0.3 lib/tdlib/types/game_high_score.rb
tdlib-schema-1.7.0.2 lib/tdlib/types/game_high_score.rb