Class: Google::Apis::ContentV2_1::AccountstatusesCustomBatchResponseEntry
- Inherits:
-
Object
- Object
- Google::Apis::ContentV2_1::AccountstatusesCustomBatchResponseEntry
- 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
-
#account_status ⇒ Google::Apis::ContentV2_1::AccountStatus
The status of an account, that is, 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.
Constructor Details
#initialize(**args) ⇒ AccountstatusesCustomBatchResponseEntry
Returns a new instance of AccountstatusesCustomBatchResponseEntry.
1917 1918 1919 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 1917 def initialize(**args) update!(**args) end |
Instance Attribute Details
#account_status ⇒ Google::Apis::ContentV2_1::AccountStatus
The status of an account, that is, information about its products, which is
computed offline and not returned immediately at insertion time.
Corresponds to the JSON property accountStatus
1905 1906 1907 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 1905 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
1910 1911 1912 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 1910 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
1915 1916 1917 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 1915 def errors @errors end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1922 1923 1924 1925 1926 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 1922 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 |