Class: Google::Apis::ContentV2::DatafeedsBatchResponseEntry
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::ContentV2::DatafeedsBatchResponseEntry
 
- 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 datafeeds response.
Instance Attribute Summary collapse
- 
  
    
      #batch_id  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The ID of the request entry this entry responds to. 
- 
  
    
      #datafeed  ⇒ Google::Apis::ContentV2::Datafeed 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Datafeed configuration data. 
- 
  
    
      #errors  ⇒ Google::Apis::ContentV2::Errors 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A list of errors returned by a failed batch entry. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ DatafeedsBatchResponseEntry 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of DatafeedsBatchResponseEntry. 
- 
  
    
      #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) ⇒ DatafeedsBatchResponseEntry
Returns a new instance of DatafeedsBatchResponseEntry
| 1679 1680 1681 | # File 'generated/google/apis/content_v2/classes.rb', line 1679 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
| 1667 1668 1669 | # File 'generated/google/apis/content_v2/classes.rb', line 1667 def batch_id @batch_id end | 
#datafeed ⇒ Google::Apis::ContentV2::Datafeed
Datafeed configuration data.
Corresponds to the JSON property datafeed
| 1672 1673 1674 | # File 'generated/google/apis/content_v2/classes.rb', line 1672 def datafeed @datafeed end | 
#errors ⇒ Google::Apis::ContentV2::Errors
A list of errors returned by a failed batch entry.
Corresponds to the JSON property errors
| 1677 1678 1679 | # File 'generated/google/apis/content_v2/classes.rb', line 1677 def errors @errors end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 1684 1685 1686 1687 1688 | # File 'generated/google/apis/content_v2/classes.rb', line 1684 def update!(**args) @batch_id = args[:batch_id] if args.key?(:batch_id) @datafeed = args[:datafeed] if args.key?(:datafeed) @errors = args[:errors] if args.key?(:errors) end |