class Google::Apis::ContentV2_1::ShippingsettingsCustomBatchResponseEntry
A batch entry encoding a single non-batch shipping settings response.
Attributes
The ID of the request entry to which this entry responds. Corresponds to the JSON property `batchId` @return [Fixnum]
A list of errors returned by a failed batch entry. Corresponds to the JSON property `errors` @return [Google::Apis::ContentV2_1::Errors]
Identifies what kind of resource this is. Value: the fixed string “`content# shippingsettingsCustomBatchResponseEntry`” Corresponds to the JSON property `kind` @return [String]
The merchant account's shipping settings. All methods except getsupportedcarriers and getsupportedholidays require the admin role. Corresponds to the JSON property `shippingSettings` @return [Google::Apis::ContentV2_1::ShippingSettings]
Public Class Methods
# File lib/google/apis/content_v2_1/classes.rb, line 14749 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/content_v2_1/classes.rb, line 14754 def update!(**args) @batch_id = args[:batch_id] if args.key?(:batch_id) @errors = args[:errors] if args.key?(:errors) @kind = args[:kind] if args.key?(:kind) @shipping_settings = args[:shipping_settings] if args.key?(:shipping_settings) end