Class: Google::Apis::GamesV1::AchievementUpdateMultipleRequest
- Inherits:
-
Object
- Object
- Google::Apis::GamesV1::AchievementUpdateMultipleRequest
- 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
A list of achievement update requests.
Instance Attribute Summary collapse
-
#kind ⇒ String
Uniquely identifies the type of this resource.
-
#updates ⇒ Array<Google::Apis::GamesV1::UpdateAchievementRequest>
The individual achievement update requests.
Instance Method Summary collapse
-
#initialize(**args) ⇒ AchievementUpdateMultipleRequest
constructor
A new instance of AchievementUpdateMultipleRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ AchievementUpdateMultipleRequest
Returns a new instance of AchievementUpdateMultipleRequest.
291 292 293 |
# File 'generated/google/apis/games_v1/classes.rb', line 291 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#achievementUpdateMultipleRequest
.
Corresponds to the JSON property kind
284 285 286 |
# File 'generated/google/apis/games_v1/classes.rb', line 284 def kind @kind end |
#updates ⇒ Array<Google::Apis::GamesV1::UpdateAchievementRequest>
The individual achievement update requests.
Corresponds to the JSON property updates
289 290 291 |
# File 'generated/google/apis/games_v1/classes.rb', line 289 def updates @updates end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
296 297 298 299 |
# File 'generated/google/apis/games_v1/classes.rb', line 296 def update!(**args) @kind = args[:kind] if args.key?(:kind) @updates = args[:updates] if args.key?(:updates) end |