class Google::Apis::DfareportingV3_4::CustomEventError

The error code and description for a custom event that failed to insert.

Attributes

code[RW]

The error code. Corresponds to the JSON property `code` @return [String]

kind[RW]

Identifies what kind of resource this is. Value: the fixed string “ dfareporting#customEventError”. Corresponds to the JSON property `kind` @return [String]

message[RW]

A description of the error. Corresponds to the JSON property `message` @return [String]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

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