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 String
discriminator value for StagedOrderSetReturnShipmentStateAction -
Method Summary
Modifier and TypeMethodDescriptionbuilder()
builder factory method for StagedOrderSetReturnShipmentStateActioncreate builder for StagedOrderSetReturnShipmentStateAction instancefactory method to create a deep copy of StagedOrderSetReturnShipmentStateActionid
of the ReturnItem to update.key
of the ReturnItem to update.@NotNull ReturnShipmentState
New shipment state of the ReturnItem.of()
factory methodof
(StagedOrderSetReturnShipmentStateAction template) factory method to create a shallow copy StagedOrderSetReturnShipmentStateActionvoid
setReturnItemId
(String returnItemId) id
of the ReturnItem to update.void
setReturnItemKey
(String returnItemKey) key
of the ReturnItem to update.void
setShipmentState
(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> T
withStagedOrderSetReturnShipmentStateAction
(Function<StagedOrderSetReturnShipmentStateAction, 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_RETURN_SHIPMENT_STATE
discriminator value for StagedOrderSetReturnShipmentStateAction- See Also:
-
-
Method Details
-
getReturnItemId
String getReturnItemId()id
of the ReturnItem to update. EitherreturnItemId
orreturnItemKey
is required.- Returns:
- returnItemId
-
getReturnItemKey
String getReturnItemKey()key
of the ReturnItem to update. EitherreturnItemId
orreturnItemKey
is required.- Returns:
- returnItemKey
-
getShipmentState
New shipment state of the ReturnItem.
- Returns:
- shipmentState
-
setReturnItemId
id
of the ReturnItem to update. EitherreturnItemId
orreturnItemKey
is required.- Parameters:
returnItemId
- value to be set
-
setReturnItemKey
key
of the ReturnItem to update. EitherreturnItemId
orreturnItemKey
is 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
-
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
-