Class: Google::Apis::ContentV2::ProductsBatchResponseEntry
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ContentV2::ProductsBatchResponseEntry
 
 
- 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 products response.
Instance Attribute Summary collapse
- 
  
    
      #batch_id  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The ID of the request entry this entry responds to.
 - 
  
    
      #errors  ⇒ Google::Apis::ContentV2::Errors 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A list of errors returned by a failed batch entry.
 - 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Identifies what kind of resource this is.
 - 
  
    
      #product  ⇒ Google::Apis::ContentV2::Product 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Product data.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ProductsBatchResponseEntry 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of ProductsBatchResponseEntry.
 - 
  
    
      #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) ⇒ ProductsBatchResponseEntry
Returns a new instance of ProductsBatchResponseEntry
      9297 9298 9299  | 
    
      # File 'generated/google/apis/content_v2/classes.rb', line 9297 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
      9279 9280 9281  | 
    
      # File 'generated/google/apis/content_v2/classes.rb', line 9279 def batch_id @batch_id end  | 
  
#errors ⇒ Google::Apis::ContentV2::Errors
A list of errors returned by a failed batch entry.
Corresponds to the JSON property errors
      9284 9285 9286  | 
    
      # File 'generated/google/apis/content_v2/classes.rb', line 9284 def errors @errors end  | 
  
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "content#
productsCustomBatchResponseEntry".
Corresponds to the JSON property kind
      9290 9291 9292  | 
    
      # File 'generated/google/apis/content_v2/classes.rb', line 9290 def kind @kind end  | 
  
#product ⇒ Google::Apis::ContentV2::Product
Product data.
Corresponds to the JSON property product
      9295 9296 9297  | 
    
      # File 'generated/google/apis/content_v2/classes.rb', line 9295 def product @product end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      9302 9303 9304 9305 9306 9307  | 
    
      # File 'generated/google/apis/content_v2/classes.rb', line 9302 def update!(**args) @batch_id = args[:batch_id] if args.key?(:batch_id) @errors = args[:errors] if args.key?(:errors) @kind = args[:kind] if args.key?(:kind) @product = args[:product] if args.key?(:product) end  |