Class: Google::Apis::GamesV1::PlayerLevel

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/games_v1/classes.rb,
lib/google/apis/games_v1/representations.rb,
lib/google/apis/games_v1/representations.rb

Overview

1P/3P metadata about a user's level.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ PlayerLevel

Returns a new instance of PlayerLevel.



2237
2238
2239
# File 'lib/google/apis/games_v1/classes.rb', line 2237

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#kindString

Uniquely identifies the type of this resource. Value is always the fixed string games#playerLevel. Corresponds to the JSON property kind

Returns:

  • (String)


2220
2221
2222
# File 'lib/google/apis/games_v1/classes.rb', line 2220

def kind
  @kind
end

#levelFixnum

The level for the user. Corresponds to the JSON property level

Returns:

  • (Fixnum)


2225
2226
2227
# File 'lib/google/apis/games_v1/classes.rb', line 2225

def level
  @level
end

#max_experience_pointsFixnum

The maximum experience points for this level. Corresponds to the JSON property maxExperiencePoints

Returns:

  • (Fixnum)


2230
2231
2232
# File 'lib/google/apis/games_v1/classes.rb', line 2230

def max_experience_points
  @max_experience_points
end

#min_experience_pointsFixnum

The minimum experience points for this level. Corresponds to the JSON property minExperiencePoints

Returns:

  • (Fixnum)


2235
2236
2237
# File 'lib/google/apis/games_v1/classes.rb', line 2235

def min_experience_points
  @min_experience_points
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2242
2243
2244
2245
2246
2247
# File 'lib/google/apis/games_v1/classes.rb', line 2242

def update!(**args)
  @kind = args[:kind] if args.key?(:kind)
  @level = args[:level] if args.key?(:level)
  @max_experience_points = args[:max_experience_points] if args.key?(:max_experience_points)
  @min_experience_points = args[:min_experience_points] if args.key?(:min_experience_points)
end