Interface OrderImportLineItemStateAction
- All Superinterfaces:
OrderUpdateAction,ResourceUpdateAction<OrderUpdateAction>
The import of States does not follow any predefined rules and should be only used if no transitions are defined. The quantity in the ItemStates must match the sum of all Line Items states' quantities.
Example to create an instance using the builder pattern
OrderImportLineItemStateAction orderImportLineItemStateAction = OrderImportLineItemStateAction.builder()
.plusState(stateBuilder -> stateBuilder)
.build()
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final Stringdiscriminator value for OrderImportLineItemStateAction -
Method Summary
Modifier and TypeMethodDescriptionbuilder()builder factory method for OrderImportLineItemStateActionbuilder(OrderImportLineItemStateAction template) create builder for OrderImportLineItemStateAction instancecopyDeep()deepCopy(OrderImportLineItemStateAction template) factory method to create a deep copy of OrderImportLineItemStateActionidof the LineItem to update.keyof the LineItem to update.getState()New status of the Line Items.of()factory methodof(OrderImportLineItemStateAction template) factory method to create a shallow copy OrderImportLineItemStateActionvoidsetLineItemId(String lineItemId) idof the LineItem to update.voidsetLineItemKey(String lineItemKey) keyof the LineItem to update.voidNew status of the Line Items.voidNew status of the Line Items.static com.fasterxml.jackson.core.type.TypeReference<OrderImportLineItemStateAction>gives a TypeReference for usage with Jackson DataBinddefault <T> Taccessor map functionMethods inherited from interface com.commercetools.api.models.order.OrderUpdateAction
getAction, withOrderUpdateActionMethods inherited from interface com.commercetools.api.models.ResourceUpdateAction
get
-
Field Details
-
IMPORT_LINE_ITEM_STATE
discriminator value for OrderImportLineItemStateAction- See Also:
-
-
Method Details
-
getLineItemId
String getLineItemId()idof the LineItem to update. EitherlineItemIdorlineItemKeyis required.- Returns:
- lineItemId
-
getLineItemKey
String getLineItemKey()keyof the LineItem to update. EitherlineItemIdorlineItemKeyis required.- Returns:
- lineItemKey
-
getState
New status of the Line Items.
- Returns:
- state
-
setLineItemId
idof the LineItem to update. EitherlineItemIdorlineItemKeyis required.- Parameters:
lineItemId- value to be set
-
setLineItemKey
keyof the LineItem to update. EitherlineItemIdorlineItemKeyis required.- Parameters:
lineItemKey- value to be set
-
setState
New status of the Line Items.
- Parameters:
state- values to be set
-
setState
New status of the Line Items.
- Parameters:
state- values to be set
-
of
factory method- Returns:
- instance of OrderImportLineItemStateAction
-
of
factory method to create a shallow copy OrderImportLineItemStateAction- Parameters:
template- instance to be copied- Returns:
- copy instance
-
copyDeep
OrderImportLineItemStateAction copyDeep()- Specified by:
copyDeepin interfaceOrderUpdateAction
-
deepCopy
@Nullable static OrderImportLineItemStateAction deepCopy(@Nullable OrderImportLineItemStateAction template) factory method to create a deep copy of OrderImportLineItemStateAction- Parameters:
template- instance to be copied- Returns:
- copy instance
-
builder
builder factory method for OrderImportLineItemStateAction- Returns:
- builder
-
builder
create builder for OrderImportLineItemStateAction instance- Parameters:
template- instance with prefilled values for the builder- Returns:
- builder
-
withOrderImportLineItemStateAction
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<OrderImportLineItemStateAction> typeReference()gives a TypeReference for usage with Jackson DataBind- Returns:
- TypeReference
-