Class: Google::Apis::DfareportingV2_8::ConversionStatus
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::DfareportingV2_8::ConversionStatus
 
- 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
The original conversion that was inserted or updated and whether there were any errors.
Instance Attribute Summary collapse
- 
  
    
      #conversion  ⇒ Google::Apis::DfareportingV2_8::Conversion 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A Conversion represents when a user successfully performs a desired action after seeing an ad. 
- 
  
    
      #errors  ⇒ Array<Google::Apis::DfareportingV2_8::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
| 2501 2502 2503 | # File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 2501 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#conversion ⇒ Google::Apis::DfareportingV2_8::Conversion
A Conversion represents when a user successfully performs a desired action
after seeing an ad.
Corresponds to the JSON property conversion
| 2488 2489 2490 | # File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 2488 def conversion @conversion end | 
#errors ⇒ Array<Google::Apis::DfareportingV2_8::ConversionError>
A list of errors related to this conversion.
Corresponds to the JSON property errors
| 2493 2494 2495 | # File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 2493 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
| 2499 2500 2501 | # File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 2499 def kind @kind end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 2506 2507 2508 2509 2510 | # File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 2506 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 |