class Google::Apis::GamesV1::AchievementUpdateMultipleRequest

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

Attributes

kind[RW]

Uniquely identifies the type of this resource. Value is always the fixed string games#achievementUpdateMultipleRequest. Corresponds to the JSON property `kind` @return [String]

updates[RW]

The individual achievement update requests. Corresponds to the JSON property `updates` @return [Array<Google::Apis::GamesV1::UpdateAchievementRequest>]

Public Class Methods

new(**args) click to toggle source
# File generated/google/apis/games_v1/classes.rb, line 301
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# 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