Interface CartSetCustomLineItemTaxRateAction
- All Superinterfaces:
CartUpdateAction,ResourceUpdateAction<CartUpdateAction>
Can be used if the Cart has the External TaxMode.
Example to create an instance using the builder pattern
CartSetCustomLineItemTaxRateAction cartSetCustomLineItemTaxRateAction = CartSetCustomLineItemTaxRateAction.builder()
.build()
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final Stringdiscriminator value for CartSetCustomLineItemTaxRateAction -
Method Summary
Modifier and TypeMethodDescriptionbuilder()builder factory method for CartSetCustomLineItemTaxRateActionbuilder(CartSetCustomLineItemTaxRateAction template) create builder for CartSetCustomLineItemTaxRateAction instancecopyDeep()deepCopy(CartSetCustomLineItemTaxRateAction template) factory method to create a deep copy of CartSetCustomLineItemTaxRateActionidof the CustomLineItem to update.keyof the CustomLineItem to update.@Valid ExternalTaxRateDraftValue to set.keyof the ShippingMethod used for this Custom Line Item.of()factory methodof(CartSetCustomLineItemTaxRateAction template) factory method to create a shallow copy CartSetCustomLineItemTaxRateActionvoidsetCustomLineItemId(String customLineItemId) idof the CustomLineItem to update.voidsetCustomLineItemKey(String customLineItemKey) keyof the CustomLineItem to update.voidsetExternalTaxRate(ExternalTaxRateDraft externalTaxRate) Value to set.voidsetShippingKey(String shippingKey) keyof the ShippingMethod used for this Custom Line Item.static com.fasterxml.jackson.core.type.TypeReference<CartSetCustomLineItemTaxRateAction>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
-
SET_CUSTOM_LINE_ITEM_TAX_RATE
discriminator value for CartSetCustomLineItemTaxRateAction- See Also:
-
-
Method Details
-
getCustomLineItemId
String getCustomLineItemId()idof the CustomLineItem to update. EithercustomLineItemIdorcustomLineItemKeyis required.- Returns:
- customLineItemId
-
getCustomLineItemKey
String getCustomLineItemKey()keyof the CustomLineItem to update. EithercustomLineItemIdorcustomLineItemKeyis required.- Returns:
- customLineItemKey
-
getExternalTaxRate
Value to set. If empty, an existing value is removed.
- Returns:
- externalTaxRate
-
getShippingKey
String getShippingKey()keyof the ShippingMethod used for this Custom Line Item. This is required for Carts withMultipleShippingMode.- Returns:
- shippingKey
-
setCustomLineItemId
idof the CustomLineItem to update. EithercustomLineItemIdorcustomLineItemKeyis required.- Parameters:
customLineItemId- value to be set
-
setCustomLineItemKey
keyof the CustomLineItem to update. EithercustomLineItemIdorcustomLineItemKeyis required.- Parameters:
customLineItemKey- value to be set
-
setExternalTaxRate
Value to set. If empty, an existing value is removed.
- Parameters:
externalTaxRate- value to be set
-
setShippingKey
keyof the ShippingMethod used for this Custom Line Item. This is required for Carts withMultipleShippingMode.- Parameters:
shippingKey- value to be set
-
of
factory method- Returns:
- instance of CartSetCustomLineItemTaxRateAction
-
of
factory method to create a shallow copy CartSetCustomLineItemTaxRateAction- Parameters:
template- instance to be copied- Returns:
- copy instance
-
copyDeep
CartSetCustomLineItemTaxRateAction copyDeep()- Specified by:
copyDeepin interfaceCartUpdateAction
-
deepCopy
@Nullable static CartSetCustomLineItemTaxRateAction deepCopy(@Nullable CartSetCustomLineItemTaxRateAction template) factory method to create a deep copy of CartSetCustomLineItemTaxRateAction- Parameters:
template- instance to be copied- Returns:
- copy instance
-
builder
builder factory method for CartSetCustomLineItemTaxRateAction- Returns:
- builder
-
builder
static CartSetCustomLineItemTaxRateActionBuilder builder(CartSetCustomLineItemTaxRateAction template) create builder for CartSetCustomLineItemTaxRateAction instance- Parameters:
template- instance with prefilled values for the builder- Returns:
- builder
-
withCartSetCustomLineItemTaxRateAction
default <T> T withCartSetCustomLineItemTaxRateAction(Function<CartSetCustomLineItemTaxRateAction, T> helper) accessor map function- Type Parameters:
T- mapped type- Parameters:
helper- function to map the object- Returns:
- mapped value
-
typeReference
static com.fasterxml.jackson.core.type.TypeReference<CartSetCustomLineItemTaxRateAction> typeReference()gives a TypeReference for usage with Jackson DataBind- Returns:
- TypeReference
-