Class: Google::Apis::ContentV2_1::AccountstatusesCustomBatchResponseEntry
- Inherits:
-
Object
- Object
- Google::Apis::ContentV2_1::AccountstatusesCustomBatchResponseEntry
- Defined in:
- generated/google/apis/content_v2_1/classes.rb,
generated/google/apis/content_v2_1/representations.rb,
generated/google/apis/content_v2_1/representations.rb
Overview
A batch entry encoding a single non-batch accountstatuses response.
Instance Attribute Summary collapse
-
#account_status ⇒ Google::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.
-
#batch_id ⇒ Fixnum
The ID of the request entry this entry responds to.
-
#errors ⇒ Google::Apis::ContentV2_1::Errors
A list of errors returned by a failed batch entry.
Instance Method Summary collapse
-
#initialize(**args) ⇒ AccountstatusesCustomBatchResponseEntry
constructor
A new instance of AccountstatusesCustomBatchResponseEntry.
-
#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) ⇒ AccountstatusesCustomBatchResponseEntry
Returns a new instance of AccountstatusesCustomBatchResponseEntry
1120 1121 1122 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 1120 def initialize(**args) update!(**args) end |
Instance Attribute Details
#account_status ⇒ Google::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
1108 1109 1110 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 1108 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
1113 1114 1115 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 1113 def batch_id @batch_id end |
#errors ⇒ Google::Apis::ContentV2_1::Errors
A list of errors returned by a failed batch entry.
Corresponds to the JSON property errors
1118 1119 1120 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 1118 def errors @errors end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1125 1126 1127 1128 1129 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 1125 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 |