Interface CartSetShippingAddressAction
- All Superinterfaces:
CartUpdateAction
,ResourceUpdateAction<CartUpdateAction>
Setting the shipping address also sets the TaxRate of Line Items and calculates the TaxedPrice.
If a matching price cannot be found for the given shipping address during Line Item price selection, a MissingTaxRateForCountry error is returned.
If you want to allow shipping to states inside a country that are not explicitly covered by a TaxRate, set the countryTaxRateFallbackEnabled
field to true
in the CartsConfiguration by using the Change CountryTaxRateFallbackEnabled update action.
Example to create an instance using the builder pattern
CartSetShippingAddressAction cartSetShippingAddressAction = CartSetShippingAddressAction.builder()
.build()
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
discriminator value for CartSetShippingAddressAction -
Method Summary
Modifier and TypeMethodDescriptionbuilder()
builder factory method for CartSetShippingAddressActionbuilder
(CartSetShippingAddressAction template) create builder for CartSetShippingAddressAction instancestatic CartSetShippingAddressAction
deepCopy
(CartSetShippingAddressAction template) factory method to create a deep copy of CartSetShippingAddressAction@Valid BaseAddress
Value to set.static CartSetShippingAddressAction
of()
factory methodstatic CartSetShippingAddressAction
of
(CartSetShippingAddressAction template) factory method to create a shallow copy CartSetShippingAddressActionvoid
setAddress
(BaseAddress address) Value to set.static com.fasterxml.jackson.core.type.TypeReference<CartSetShippingAddressAction>
gives a TypeReference for usage with Jackson DataBinddefault <T> T
accessor map functionMethods inherited from interface com.commercetools.api.models.cart.CartUpdateAction
getAction, withCartUpdateAction
Methods inherited from interface com.commercetools.api.models.ResourceUpdateAction
get
-
Field Details
-
SET_SHIPPING_ADDRESS
discriminator value for CartSetShippingAddressAction- See Also:
-
-
Method Details
-
getAddress
Value to set. If not set, the shipping address is unset, and the
taxedPrice
andtaxRate
are unset in all Line Items of the Cart.- Returns:
- address
-
setAddress
Value to set. If not set, the shipping address is unset, and the
taxedPrice
andtaxRate
are unset in all Line Items of the Cart.- Parameters:
address
- value to be set
-
of
factory method- Returns:
- instance of CartSetShippingAddressAction
-
of
factory method to create a shallow copy CartSetShippingAddressAction- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
deepCopy
@Nullable static CartSetShippingAddressAction deepCopy(@Nullable CartSetShippingAddressAction template) factory method to create a deep copy of CartSetShippingAddressAction- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
builder
builder factory method for CartSetShippingAddressAction- Returns:
- builder
-
builder
create builder for CartSetShippingAddressAction instance- Parameters:
template
- instance with prefilled values for the builder- Returns:
- builder
-
withCartSetShippingAddressAction
accessor map function- Type Parameters:
T
- mapped type- Parameters:
helper
- function to map the object- Returns:
- mapped value
-
typeReference
gives a TypeReference for usage with Jackson DataBind- Returns:
- TypeReference
-