class Google::Apis::GamesV1::AchievementUpdateMultipleResponse

Response message for UpdateMultipleAchievements rpc.

Attributes

kind[RW]

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

updated_achievements[RW]

The updated state of the achievements. Corresponds to the JSON property `updatedAchievements` @return [Array<Google::Apis::GamesV1::UpdateAchievementResponse>]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/games_v1/classes.rb, line 322
def update!(**args)
  @kind = args[:kind] if args.key?(:kind)
  @updated_achievements = args[:updated_achievements] if args.key?(:updated_achievements)
end