Class: Google::Apis::DfareportingV2_6::ConversionStatus

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

Overview

The original conversion that was inserted or updated and whether there were any errors.

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

Returns a new instance of ConversionStatus.



2394
2395
2396
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 2394

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

Instance Attribute Details

#conversionGoogle::Apis::DfareportingV2_6::Conversion

A Conversion represents when a user successfully performs a desired action after seeing an ad. Corresponds to the JSON property conversion



2381
2382
2383
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 2381

def conversion
  @conversion
end

#errorsArray<Google::Apis::DfareportingV2_6::ConversionError>

A list of errors related to this conversion. Corresponds to the JSON property errors



2386
2387
2388
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 2386

def errors
  @errors
end

#kindString

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

Returns:

  • (String)


2392
2393
2394
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 2392

def kind
  @kind
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2399
2400
2401
2402
2403
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 2399

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