Class: Google::Apis::DfareportingV3_4::CustomEventsBatchInsertResponse

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

Insert Custom Events Response.

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) ⇒ CustomEventsBatchInsertResponse

Returns a new instance of CustomEventsBatchInsertResponse.



4890
4891
4892
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 4890

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

Instance Attribute Details

#has_failuresBoolean Also known as: has_failures?

Indicates that some or all custom events failed to insert. Corresponds to the JSON property hasFailures

Returns:

  • (Boolean)


4875
4876
4877
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 4875

def has_failures
  @has_failures
end

#kindString

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

Returns:

  • (String)


4882
4883
4884
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 4882

def kind
  @kind
end

#statusArray<Google::Apis::DfareportingV3_4::CustomEventStatus>

The insert status of each custom event. Statuses are returned in the same order that conversions are inserted. Corresponds to the JSON property status



4888
4889
4890
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 4888

def status
  @status
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4895
4896
4897
4898
4899
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 4895

def update!(**args)
  @has_failures = args[:has_failures] if args.key?(:has_failures)
  @kind = args[:kind] if args.key?(:kind)
  @status = args[:status] if args.key?(:status)
end