class Google::Apis::ContentV2::AccountStatusesBatchResponseEntry
A batch entry encoding a single non-batch accountstatuses response.
Attributes
account_status[RW]
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` @return [Google::Apis::ContentV2::AccountStatus]
batch_id[RW]
The ID of the request entry this entry responds to. Corresponds to the JSON property `batchId` @return [Fixnum]
errors[RW]
A list of errors returned by a failed batch entry. Corresponds to the JSON property `errors` @return [Google::Apis::ContentV2::Errors]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/content_v2/classes.rb, line 1298 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/content_v2/classes.rb, line 1303 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