Class: Google::Apis::GamesV1::GamesAchievementSetStepsAtLeast

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

Overview

The payload to request to increment an achievement.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GamesAchievementSetStepsAtLeast

Returns a new instance of GamesAchievementSetStepsAtLeast.



1103
1104
1105
# File 'generated/google/apis/games_v1/classes.rb', line 1103

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

Instance Attribute Details

#kindString

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

Returns:

  • (String)


1096
1097
1098
# File 'generated/google/apis/games_v1/classes.rb', line 1096

def kind
  @kind
end

#stepsFixnum

The minimum number of steps for the achievement to be set to. Corresponds to the JSON property steps

Returns:

  • (Fixnum)


1101
1102
1103
# File 'generated/google/apis/games_v1/classes.rb', line 1101

def steps
  @steps
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1108
1109
1110
1111
# File 'generated/google/apis/games_v1/classes.rb', line 1108

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