Class: Google::Apis::DfareportingV3_4::ConversionsBatchInsertResponse

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 Conversions Response.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ConversionsBatchInsertResponse

Returns a new instance of ConversionsBatchInsertResponse.



2690
2691
2692
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 2690

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

Instance Attribute Details

#has_failuresBoolean Also known as: has_failures?

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

Returns:

  • (Boolean)


2675
2676
2677
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 2675

def has_failures
  @has_failures
end

#kindString

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

Returns:

  • (String)


2682
2683
2684
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 2682

def kind
  @kind
end

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

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



2688
2689
2690
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 2688

def status
  @status
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2695
2696
2697
2698
2699
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 2695

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