Class: Google::Apis::DfareportingV3_4::CustomEventStatus
- Inherits:
-
Object
- Object
- Google::Apis::DfareportingV3_4::CustomEventStatus
- 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 original custom event that was inserted and whether there were any errors.
Instance Attribute Summary collapse
-
#custom_event ⇒ Google::Apis::DfareportingV3_4::CustomEvent
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.
-
#errors ⇒ Array<Google::Apis::DfareportingV3_4::CustomEventError>
A list of errors related to this custom event.
-
#kind ⇒ String
Identifies what kind of resource this is.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CustomEventStatus
constructor
A new instance of CustomEventStatus.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ CustomEventStatus
Returns a new instance of CustomEventStatus.
4877 4878 4879 |
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 4877 def initialize(**args) update!(**args) end |
Instance Attribute Details
#custom_event ⇒ Google::Apis::DfareportingV3_4::CustomEvent
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
4864 4865 4866 |
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 4864 def custom_event @custom_event end |
#errors ⇒ Array<Google::Apis::DfareportingV3_4::CustomEventError>
A list of errors related to this custom event.
Corresponds to the JSON property errors
4869 4870 4871 |
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 4869 def errors @errors end |
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "
dfareporting#customEventStatus".
Corresponds to the JSON property kind
4875 4876 4877 |
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 4875 def kind @kind end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4882 4883 4884 4885 4886 |
# File 'generated/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 |