Class: Google::Apis::DfareportingV3_0::ConversionStatus
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::DfareportingV3_0::ConversionStatus
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dfareporting_v3_0/classes.rb,
 generated/google/apis/dfareporting_v3_0/representations.rb,
 generated/google/apis/dfareporting_v3_0/representations.rb
Overview
The original conversion that was inserted or updated and whether there were any errors.
Instance Attribute Summary collapse
- 
  
    
      #conversion  ⇒ Google::Apis::DfareportingV3_0::Conversion 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A Conversion represents when a user successfully performs a desired action after seeing an ad. 
- 
  
    
      #errors  ⇒ Array<Google::Apis::DfareportingV3_0::ConversionError> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A list of errors related to this conversion. 
- 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Identifies what kind of resource this is. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ConversionStatus 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of ConversionStatus. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ConversionStatus
Returns a new instance of ConversionStatus
| 2538 2539 2540 | # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 2538 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#conversion ⇒ Google::Apis::DfareportingV3_0::Conversion
A Conversion represents when a user successfully performs a desired action
after seeing an ad.
Corresponds to the JSON property conversion
| 2525 2526 2527 | # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 2525 def conversion @conversion end | 
#errors ⇒ Array<Google::Apis::DfareportingV3_0::ConversionError>
A list of errors related to this conversion.
Corresponds to the JSON property errors
| 2530 2531 2532 | # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 2530 def errors @errors end | 
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "
dfareporting#conversionStatus".
Corresponds to the JSON property kind
| 2536 2537 2538 | # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 2536 def kind @kind end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 2543 2544 2545 2546 2547 | # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 2543 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 |