class Google::Apis::GamesV1::GamesAchievementSetStepsAtLeast

This is a JSON template for 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 generated/google/apis/games_v1/classes.rb, line 1172
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

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