Interface CartChangeTaxModeAction
- All Superinterfaces:
CartUpdateAction,ResourceUpdateAction<CartUpdateAction>
- When
ExternalTaxMode is changed toPlatformorDisabled, 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
FieldsModifier and TypeFieldDescriptionstatic final Stringdiscriminator value for CartChangeTaxModeAction -
Method Summary
Modifier and TypeMethodDescriptionbuilder()builder factory method for CartChangeTaxModeActionbuilder(CartChangeTaxModeAction template) create builder for CartChangeTaxModeAction instancecopyDeep()static CartChangeTaxModeActiondeepCopy(CartChangeTaxModeAction template) factory method to create a deep copy of CartChangeTaxModeAction@NotNull TaxModeThe new TaxMode.static CartChangeTaxModeActionof()factory methodstatic CartChangeTaxModeActionof(CartChangeTaxModeAction template) factory method to create a shallow copy CartChangeTaxModeActionvoidsetTaxMode(TaxMode taxMode) The new TaxMode.static com.fasterxml.jackson.core.type.TypeReference<CartChangeTaxModeAction>gives a TypeReference for usage with Jackson DataBinddefault <T> Taccessor map functionMethods inherited from interface com.commercetools.api.models.cart.CartUpdateAction
getAction, withCartUpdateActionMethods 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
-
copyDeep
CartChangeTaxModeAction copyDeep()- Specified by:
copyDeepin interfaceCartUpdateAction
-
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
-