Interface StagedOrderSetReturnShipmentStateAction
- All Superinterfaces:
ResourceUpdateAction<StagedOrderUpdateAction>,StagedOrderUpdateAction
To set a ReturnShipmentState, the Order returnInfo must have at least one ReturnItem.
Produces the Order Return Shipment State Changed Message.
Example to create an instance using the builder pattern
StagedOrderSetReturnShipmentStateAction stagedOrderSetReturnShipmentStateAction = StagedOrderSetReturnShipmentStateAction.builder()
.shipmentState(ReturnShipmentState.ADVISED)
.build()
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final Stringdiscriminator value for StagedOrderSetReturnShipmentStateAction -
Method Summary
Modifier and TypeMethodDescriptionbuilder()builder factory method for StagedOrderSetReturnShipmentStateActioncreate builder for StagedOrderSetReturnShipmentStateAction instancecopyDeep()factory method to create a deep copy of StagedOrderSetReturnShipmentStateActionidof the ReturnItem to update.keyof the ReturnItem to update.@NotNull ReturnShipmentStateNew shipment state of the ReturnItem.of()factory methodof(StagedOrderSetReturnShipmentStateAction template) factory method to create a shallow copy StagedOrderSetReturnShipmentStateActionvoidsetReturnItemId(String returnItemId) idof the ReturnItem to update.voidsetReturnItemKey(String returnItemKey) keyof the ReturnItem to update.voidsetShipmentState(ReturnShipmentState shipmentState) New shipment state of the ReturnItem.static com.fasterxml.jackson.core.type.TypeReference<StagedOrderSetReturnShipmentStateAction>gives a TypeReference for usage with Jackson DataBinddefault <T> TwithStagedOrderSetReturnShipmentStateAction(Function<StagedOrderSetReturnShipmentStateAction, T> helper) accessor map functionMethods inherited from interface com.commercetools.api.models.ResourceUpdateAction
getMethods inherited from interface com.commercetools.api.models.order.StagedOrderUpdateAction
getAction, withStagedOrderUpdateAction
-
Field Details
-
SET_RETURN_SHIPMENT_STATE
discriminator value for StagedOrderSetReturnShipmentStateAction- See Also:
-
-
Method Details
-
getReturnItemId
String getReturnItemId()idof the ReturnItem to update. EitherreturnItemIdorreturnItemKeyis required.- Returns:
- returnItemId
-
getReturnItemKey
String getReturnItemKey()keyof the ReturnItem to update. EitherreturnItemIdorreturnItemKeyis required.- Returns:
- returnItemKey
-
getShipmentState
New shipment state of the ReturnItem.
- Returns:
- shipmentState
-
setReturnItemId
idof the ReturnItem to update. EitherreturnItemIdorreturnItemKeyis required.- Parameters:
returnItemId- value to be set
-
setReturnItemKey
keyof the ReturnItem to update. EitherreturnItemIdorreturnItemKeyis required.- Parameters:
returnItemKey- value to be set
-
setShipmentState
New shipment state of the ReturnItem.
- Parameters:
shipmentState- value to be set
-
of
factory method- Returns:
- instance of StagedOrderSetReturnShipmentStateAction
-
of
factory method to create a shallow copy StagedOrderSetReturnShipmentStateAction- Parameters:
template- instance to be copied- Returns:
- copy instance
-
copyDeep
StagedOrderSetReturnShipmentStateAction copyDeep()- Specified by:
copyDeepin interfaceStagedOrderUpdateAction
-
deepCopy
@Nullable static StagedOrderSetReturnShipmentStateAction deepCopy(@Nullable StagedOrderSetReturnShipmentStateAction template) factory method to create a deep copy of StagedOrderSetReturnShipmentStateAction- Parameters:
template- instance to be copied- Returns:
- copy instance
-
builder
builder factory method for StagedOrderSetReturnShipmentStateAction- Returns:
- builder
-
builder
static StagedOrderSetReturnShipmentStateActionBuilder builder(StagedOrderSetReturnShipmentStateAction template) create builder for StagedOrderSetReturnShipmentStateAction instance- Parameters:
template- instance with prefilled values for the builder- Returns:
- builder
-
withStagedOrderSetReturnShipmentStateAction
default <T> T withStagedOrderSetReturnShipmentStateAction(Function<StagedOrderSetReturnShipmentStateAction, 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<StagedOrderSetReturnShipmentStateAction> typeReference()gives a TypeReference for usage with Jackson DataBind- Returns:
- TypeReference
-