Interface GraphQLMissingTaxRateForCountryError

All Superinterfaces:
GraphQLErrorObject

public interface GraphQLMissingTaxRateForCountryError extends GraphQLErrorObject

Returned when the Tax Category of at least one of the lineItems, customLineItems, or shippingInfo in the Cart is missing the TaxRate matching country and state given in the shippingAddress of that Cart.

The error can be returned as a failed response to all update actions on Carts and Staged Orders.

The error is also returned as a failed response to:


Example to create an instance using the builder pattern

     GraphQLMissingTaxRateForCountryError graphQLMissingTaxRateForCountryError = GraphQLMissingTaxRateForCountryError.builder()
             .taxCategoryId("{taxCategoryId}")
             .build()