Class: Google::Apis::DfareportingV3_4::CustomEventError

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/dfareporting_v3_4/classes.rb,
generated/google/apis/dfareporting_v3_4/representations.rb,
generated/google/apis/dfareporting_v3_4/representations.rb

Overview

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ CustomEventError

Returns a new instance of CustomEventError.



4742
4743
4744
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 4742

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#codeString

The error code. Corresponds to the JSON property code

Returns:

  • (String)


4729
4730
4731
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 4729

def code
  @code
end

#kindString

Identifies what kind of resource this is. Value: the fixed string " dfareporting#customEventError". Corresponds to the JSON property kind

Returns:

  • (String)


4735
4736
4737
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 4735

def kind
  @kind
end

#messageString

A description of the error. Corresponds to the JSON property message

Returns:

  • (String)


4740
4741
4742
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 4740

def message
  @message
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4747
4748
4749
4750
4751
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 4747

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