Class: Google::Apis::DfareportingV2_8::ConversionsBatchUpdateResponse

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

Overview

Update Conversions 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) ⇒ ConversionsBatchUpdateResponse

Returns a new instance of ConversionsBatchUpdateResponse



2623
2624
2625
# File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 2623

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

Instance Attribute Details

#has_failuresBoolean Also known as: has_failures?

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

Returns:

  • (Boolean)


2608
2609
2610
# File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 2608

def has_failures
  @has_failures
end

#kindString

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

Returns:

  • (String)


2615
2616
2617
# File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 2615

def kind
  @kind
end

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

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



2621
2622
2623
# File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 2621

def status
  @status
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2628
2629
2630
2631
2632
# File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 2628

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