class Google::Apis::GamesV1::GamesAchievementSetStepsAtLeast

The payload to request to increment an achievement.

Attributes

kind[RW]

Uniquely identifies the type of this resource. Value is always the fixed string `games#GamesAchievementSetStepsAtLeast`. Corresponds to the JSON property `kind` @return [String]

steps[RW]

The minimum number of steps for the achievement to be set to. Corresponds to the JSON property `steps` @return [Fixnum]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/games_v1/classes.rb, line 1073
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/games_v1/classes.rb, line 1078
def update!(**args)
  @kind = args[:kind] if args.key?(:kind)
  @steps = args[:steps] if args.key?(:steps)
end