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

This is a JSON template for a list of achievement update requests.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ AchievementUpdateMultipleRequest

Returns a new instance of AchievementUpdateMultipleRequest.



301
302
303
# File 'generated/google/apis/games_v1/classes.rb', line 301

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)


294
295
296
# File 'generated/google/apis/games_v1/classes.rb', line 294

def kind
  @kind
end

#updatesArray<Google::Apis::GamesV1::UpdateAchievementRequest>

The individual achievement update requests. Corresponds to the JSON property updates



299
300
301
# File 'generated/google/apis/games_v1/classes.rb', line 299

def updates
  @updates
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



306
307
308
309
# File 'generated/google/apis/games_v1/classes.rb', line 306

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