class Google::Apis::ContentV2::AccountTaxBatchResponseEntry
A batch entry encoding a single non-batch accounttax response.
Attributes
account_tax[RW]
The tax settings of a merchant account. Corresponds to the JSON property `accountTax` @return [Google::Apis::ContentV2::AccountTax]
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]
kind[RW]
Identifies what kind of resource this is. Value: the fixed string “content# accounttaxCustomBatchResponseEntry”. Corresponds to the JSON property `kind` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File generated/google/apis/content_v2/classes.rb, line 1457 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File generated/google/apis/content_v2/classes.rb, line 1462 def update!(**args) @account_tax = args[:account_tax] if args.key?(:account_tax) @batch_id = args[:batch_id] if args.key?(:batch_id) @errors = args[:errors] if args.key?(:errors) @kind = args[:kind] if args.key?(:kind) end