Class: Google::Apis::ContentV2::AccountStatusesBatchResponseEntry
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ContentV2::AccountStatusesBatchResponseEntry
 
 
- 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 accountstatuses response.
Instance Attribute Summary collapse
- 
  
    
      #account_status  ⇒ Google::Apis::ContentV2::AccountStatus 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The status of an account, i.e., information about its products, which is computed offline and not returned immediately at insertion time.
 - 
  
    
      #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.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ AccountStatusesBatchResponseEntry 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of AccountStatusesBatchResponseEntry.
 - 
  
    
      #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) ⇒ AccountStatusesBatchResponseEntry
Returns a new instance of AccountStatusesBatchResponseEntry
      1249 1250 1251  | 
    
      # File 'generated/google/apis/content_v2/classes.rb', line 1249 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#account_status ⇒ Google::Apis::ContentV2::AccountStatus
The status of an account, i.e., information about its products, which is
computed offline and not returned immediately at insertion time.
Corresponds to the JSON property accountStatus
      1237 1238 1239  | 
    
      # File 'generated/google/apis/content_v2/classes.rb', line 1237 def account_status @account_status end  | 
  
#batch_id ⇒ Fixnum
The ID of the request entry this entry responds to.
Corresponds to the JSON property batchId
      1242 1243 1244  | 
    
      # File 'generated/google/apis/content_v2/classes.rb', line 1242 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
      1247 1248 1249  | 
    
      # File 'generated/google/apis/content_v2/classes.rb', line 1247 def errors @errors end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      1254 1255 1256 1257 1258  | 
    
      # File 'generated/google/apis/content_v2/classes.rb', line 1254 def update!(**args) @account_status = args[:account_status] if args.key?(:account_status) @batch_id = args[:batch_id] if args.key?(:batch_id) @errors = args[:errors] if args.key?(:errors) end  |