Class: Google::Apis::GamesV1::GamesAchievementSetStepsAtLeast
- Inherits:
-
Object
- Object
- Google::Apis::GamesV1::GamesAchievementSetStepsAtLeast
- 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
The payload to request to increment an achievement.
Instance Attribute Summary collapse
-
#kind ⇒ String
Uniquely identifies the type of this resource.
-
#steps ⇒ Fixnum
The minimum number of steps for the achievement to be set to.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GamesAchievementSetStepsAtLeast
constructor
A new instance of GamesAchievementSetStepsAtLeast.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GamesAchievementSetStepsAtLeast
Returns a new instance of GamesAchievementSetStepsAtLeast.
1073 1074 1075 |
# File 'lib/google/apis/games_v1/classes.rb', line 1073 def initialize(**args) update!(**args) end |
Instance Attribute Details
#kind ⇒ String
Uniquely identifies the type of this resource. Value is always the fixed
string games#GamesAchievementSetStepsAtLeast.
Corresponds to the JSON property kind
1066 1067 1068 |
# File 'lib/google/apis/games_v1/classes.rb', line 1066 def kind @kind end |
#steps ⇒ Fixnum
The minimum number of steps for the achievement to be set to.
Corresponds to the JSON property steps
1071 1072 1073 |
# File 'lib/google/apis/games_v1/classes.rb', line 1071 def steps @steps end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1078 1079 1080 1081 |
# 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 |