Class: Google::Apis::GamesV1::AchievementUpdateMultipleRequest

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

A list of achievement update requests.

Instance Attribute Summary collapse

Instance Method Summary collapse

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

#kindString

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

Returns:

  • (String)


284
285
286
# File 'generated/google/apis/games_v1/classes.rb', line 284

def kind
  @kind
end

#updatesArray<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