Interface StagedOrderSetLineItemTotalPriceAction
- All Superinterfaces:
ResourceUpdateAction<StagedOrderUpdateAction>
,StagedOrderUpdateAction
Sets the LineItem totalPrice
and price
, and changes the priceMode
to ExternalTotal
LineItemPriceMode.
Example to create an instance using the builder pattern
StagedOrderSetLineItemTotalPriceAction stagedOrderSetLineItemTotalPriceAction = StagedOrderSetLineItemTotalPriceAction.builder()
.build()
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
discriminator value for StagedOrderSetLineItemTotalPriceAction -
Method Summary
Modifier and TypeMethodDescriptionbuilder()
builder factory method for StagedOrderSetLineItemTotalPriceActioncreate builder for StagedOrderSetLineItemTotalPriceAction instancefactory method to create a deep copy of StagedOrderSetLineItemTotalPriceAction@Valid ExternalLineItemTotalPrice
Value to set.id
of the LineItem to update.key
of the LineItem to update.of()
factory methodof
(StagedOrderSetLineItemTotalPriceAction template) factory method to create a shallow copy StagedOrderSetLineItemTotalPriceActionvoid
setExternalTotalPrice
(ExternalLineItemTotalPrice externalTotalPrice) Value to set.void
setLineItemId
(String lineItemId) id
of the LineItem to update.void
setLineItemKey
(String lineItemKey) key
of the LineItem to update.static com.fasterxml.jackson.core.type.TypeReference<StagedOrderSetLineItemTotalPriceAction>
gives a TypeReference for usage with Jackson DataBinddefault <T> T
withStagedOrderSetLineItemTotalPriceAction
(Function<StagedOrderSetLineItemTotalPriceAction, T> helper) accessor map functionMethods inherited from interface com.commercetools.api.models.ResourceUpdateAction
get
Methods inherited from interface com.commercetools.api.models.order.StagedOrderUpdateAction
getAction, withStagedOrderUpdateAction
-
Field Details
-
SET_LINE_ITEM_TOTAL_PRICE
discriminator value for StagedOrderSetLineItemTotalPriceAction- See Also:
-
-
Method Details
-
getLineItemId
String getLineItemId()id
of the LineItem to update. EitherlineItemId
orlineItemKey
is required.- Returns:
- lineItemId
-
getLineItemKey
String getLineItemKey()key
of the LineItem to update. EitherlineItemId
orlineItemKey
is required.- Returns:
- lineItemKey
-
getExternalTotalPrice
Value to set. If
externalTotalPrice
is not given and thepriceMode
isExternalTotal
, the external price is unset and thepriceMode
is set toPlatform
.- Returns:
- externalTotalPrice
-
setLineItemId
id
of the LineItem to update. EitherlineItemId
orlineItemKey
is required.- Parameters:
lineItemId
- value to be set
-
setLineItemKey
key
of the LineItem to update. EitherlineItemId
orlineItemKey
is required.- Parameters:
lineItemKey
- value to be set
-
setExternalTotalPrice
Value to set. If
externalTotalPrice
is not given and thepriceMode
isExternalTotal
, the external price is unset and thepriceMode
is set toPlatform
.- Parameters:
externalTotalPrice
- value to be set
-
of
factory method- Returns:
- instance of StagedOrderSetLineItemTotalPriceAction
-
of
factory method to create a shallow copy StagedOrderSetLineItemTotalPriceAction- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
deepCopy
@Nullable static StagedOrderSetLineItemTotalPriceAction deepCopy(@Nullable StagedOrderSetLineItemTotalPriceAction template) factory method to create a deep copy of StagedOrderSetLineItemTotalPriceAction- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
builder
builder factory method for StagedOrderSetLineItemTotalPriceAction- Returns:
- builder
-
builder
static StagedOrderSetLineItemTotalPriceActionBuilder builder(StagedOrderSetLineItemTotalPriceAction template) create builder for StagedOrderSetLineItemTotalPriceAction instance- Parameters:
template
- instance with prefilled values for the builder- Returns:
- builder
-
withStagedOrderSetLineItemTotalPriceAction
default <T> T withStagedOrderSetLineItemTotalPriceAction(Function<StagedOrderSetLineItemTotalPriceAction, 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<StagedOrderSetLineItemTotalPriceAction> typeReference()gives a TypeReference for usage with Jackson DataBind- Returns:
- TypeReference
-