Class: Google::Apis::DfareportingV3_3::ConversionStatus

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/dfareporting_v3_3/classes.rb,
generated/google/apis/dfareporting_v3_3/representations.rb,
generated/google/apis/dfareporting_v3_3/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.



2561
2562
2563
# File 'generated/google/apis/dfareporting_v3_3/classes.rb', line 2561

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

Instance Attribute Details

#conversionGoogle::Apis::DfareportingV3_3::Conversion

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



2548
2549
2550
# File 'generated/google/apis/dfareporting_v3_3/classes.rb', line 2548

def conversion
  @conversion
end

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

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



2553
2554
2555
# File 'generated/google/apis/dfareporting_v3_3/classes.rb', line 2553

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)


2559
2560
2561
# File 'generated/google/apis/dfareporting_v3_3/classes.rb', line 2559

def kind
  @kind
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2566
2567
2568
2569
2570
# File 'generated/google/apis/dfareporting_v3_3/classes.rb', line 2566

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