Class: Google::Apis::ContentV2::DatafeedStatusesBatchResponseEntry
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::ContentV2::DatafeedStatusesBatchResponseEntry
 
- Defined in:
- generated/google/apis/content_v2/classes.rb,
 generated/google/apis/content_v2/representations.rb,
 generated/google/apis/content_v2/representations.rb
Overview
A batch entry encoding a single non-batch datafeedstatuses response.
Instance Attribute Summary collapse
- 
  
    
      #batch_id  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The ID of the request entry this entry responds to. 
- 
  
    
      #datafeed_status  ⇒ Google::Apis::ContentV2::DatafeedStatus 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The status of a datafeed, i.e., the result of the last retrieval of the datafeed computed asynchronously when the feed processing is finished. 
- 
  
    
      #errors  ⇒ Google::Apis::ContentV2::Errors 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A list of errors returned by a failed batch entry. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ DatafeedStatusesBatchResponseEntry 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of DatafeedStatusesBatchResponseEntry. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ DatafeedStatusesBatchResponseEntry
Returns a new instance of DatafeedStatusesBatchResponseEntry
| 1861 1862 1863 | # File 'generated/google/apis/content_v2/classes.rb', line 1861 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#batch_id ⇒ Fixnum
The ID of the request entry this entry responds to.
Corresponds to the JSON property batchId
| 1848 1849 1850 | # File 'generated/google/apis/content_v2/classes.rb', line 1848 def batch_id @batch_id end | 
#datafeed_status ⇒ Google::Apis::ContentV2::DatafeedStatus
The status of a datafeed, i.e., the result of the last retrieval of the
datafeed computed asynchronously when the feed processing is finished.
Corresponds to the JSON property datafeedStatus
| 1854 1855 1856 | # File 'generated/google/apis/content_v2/classes.rb', line 1854 def datafeed_status @datafeed_status end | 
#errors ⇒ Google::Apis::ContentV2::Errors
A list of errors returned by a failed batch entry.
Corresponds to the JSON property errors
| 1859 1860 1861 | # File 'generated/google/apis/content_v2/classes.rb', line 1859 def errors @errors end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 1866 1867 1868 1869 1870 | # File 'generated/google/apis/content_v2/classes.rb', line 1866 def update!(**args) @batch_id = args[:batch_id] if args.key?(:batch_id) @datafeed_status = args[:datafeed_status] if args.key?(:datafeed_status) @errors = args[:errors] if args.key?(:errors) end |