class Google::Apis::DfareportingV3_4::CustomEventStatus

The original custom event that was inserted and whether there were any errors.

Attributes

custom_event[RW]

Experimental feature (no support provided) A custom event represents a third party impression, a third party click, an annotation on a first party impression, or an annotation on a first party click. Corresponds to the JSON property `customEvent` @return [Google::Apis::DfareportingV3_4::CustomEvent]

errors[RW]

A list of errors related to this custom event. Corresponds to the JSON property `errors` @return [Array<Google::Apis::DfareportingV3_4::CustomEventError>]

kind[RW]

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

Public Class Methods

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