class Google::Apis::GamesV1::EventBatchRecordFailure

A batch update failure resource.

Attributes

failure_cause[RW]

The cause for the update failure. Corresponds to the JSON property `failureCause` @return [String]

kind[RW]

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

range[RW]

An event period time range. Corresponds to the JSON property `range` @return [Google::Apis::GamesV1::EventPeriodRange]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/games_v1/classes.rb, line 686
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 691
def update!(**args)
  @failure_cause = args[:failure_cause] if args.key?(:failure_cause)
  @kind = args[:kind] if args.key?(:kind)
  @range = args[:range] if args.key?(:range)
end