Class: Google::Apis::ContentV2_1::AccountstatusesCustomBatchResponseEntry

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/content_v2_1/classes.rb,
lib/google/apis/content_v2_1/representations.rb,
lib/google/apis/content_v2_1/representations.rb

Overview

A batch entry encoding a single non-batch accountstatuses response.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ AccountstatusesCustomBatchResponseEntry

Returns a new instance of AccountstatusesCustomBatchResponseEntry.



1410
1411
1412
# File 'lib/google/apis/content_v2_1/classes.rb', line 1410

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#account_statusGoogle::Apis::ContentV2_1::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



1398
1399
1400
# File 'lib/google/apis/content_v2_1/classes.rb', line 1398

def 
  @account_status
end

#batch_idFixnum

The ID of the request entry this entry responds to. Corresponds to the JSON property batchId

Returns:

  • (Fixnum)


1403
1404
1405
# File 'lib/google/apis/content_v2_1/classes.rb', line 1403

def batch_id
  @batch_id
end

#errorsGoogle::Apis::ContentV2_1::Errors

A list of errors returned by a failed batch entry. Corresponds to the JSON property errors



1408
1409
1410
# File 'lib/google/apis/content_v2_1/classes.rb', line 1408

def errors
  @errors
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1415
1416
1417
1418
1419
# File 'lib/google/apis/content_v2_1/classes.rb', line 1415

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