Interface CartChangeTaxModeAction
- All Superinterfaces:
CartUpdateAction
,ResourceUpdateAction<CartUpdateAction>
- When
External
TaxMode is changed toPlatform
orDisabled
, all previously set external Tax Rates are removed. - When set to
Platform
, Line Items, Custom Line Items, and Shipping Method require a Tax Category with a Tax Rate for the Cart'sshippingAddress
.
Example to create an instance using the builder pattern
CartChangeTaxModeAction cartChangeTaxModeAction = CartChangeTaxModeAction.builder()
.taxMode(TaxMode.PLATFORM)
.build()
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
discriminator value for CartChangeTaxModeAction -
Method Summary
Modifier and TypeMethodDescriptionbuilder()
builder factory method for CartChangeTaxModeActionbuilder
(CartChangeTaxModeAction template) create builder for CartChangeTaxModeAction instancestatic CartChangeTaxModeAction
deepCopy
(CartChangeTaxModeAction template) factory method to create a deep copy of CartChangeTaxModeAction@NotNull TaxMode
The new TaxMode.static CartChangeTaxModeAction
of()
factory methodstatic CartChangeTaxModeAction
of
(CartChangeTaxModeAction template) factory method to create a shallow copy CartChangeTaxModeActionvoid
setTaxMode
(TaxMode taxMode) The new TaxMode.static com.fasterxml.jackson.core.type.TypeReference<CartChangeTaxModeAction>
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
-
CHANGE_TAX_MODE
discriminator value for CartChangeTaxModeAction- See Also:
-
-
Method Details
-
getTaxMode
The new TaxMode.
- Returns:
- taxMode
-
setTaxMode
The new TaxMode.
- Parameters:
taxMode
- value to be set
-
of
factory method- Returns:
- instance of CartChangeTaxModeAction
-
of
factory method to create a shallow copy CartChangeTaxModeAction- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
deepCopy
factory method to create a deep copy of CartChangeTaxModeAction- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
builder
builder factory method for CartChangeTaxModeAction- Returns:
- builder
-
builder
create builder for CartChangeTaxModeAction instance- Parameters:
template
- instance with prefilled values for the builder- Returns:
- builder
-
withCartChangeTaxModeAction
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
-