Class: Google::Apis::DfareportingV3_0::ConversionsBatchUpdateResponse
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::DfareportingV3_0::ConversionsBatchUpdateResponse
 
- 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
Update Conversions Response.
Instance Attribute Summary collapse
- 
  
    
      #has_failures  ⇒ Boolean 
    
    
      (also: #has_failures?)
    
  
  
  
  
    
    
  
  
  
  
  
  
    Indicates that some or all conversions failed to update. 
- 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Identifies what kind of resource this is. 
- 
  
    
      #status  ⇒ Array<Google::Apis::DfareportingV3_0::ConversionStatus> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The update status of each conversion. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ConversionsBatchUpdateResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of ConversionsBatchUpdateResponse. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ConversionsBatchUpdateResponse
Returns a new instance of ConversionsBatchUpdateResponse
| 2670 2671 2672 | # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 2670 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#has_failures ⇒ Boolean Also known as: has_failures?
Indicates that some or all conversions failed to update.
Corresponds to the JSON property hasFailures
| 2655 2656 2657 | # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 2655 def has_failures @has_failures end | 
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "
dfareporting#conversionsBatchUpdateResponse".
Corresponds to the JSON property kind
| 2662 2663 2664 | # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 2662 def kind @kind end | 
#status ⇒ Array<Google::Apis::DfareportingV3_0::ConversionStatus>
The update status of each conversion. Statuses are returned in the same order
that conversions are updated.
Corresponds to the JSON property status
| 2668 2669 2670 | # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 2668 def status @status end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 2675 2676 2677 2678 2679 | # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 2675 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 |