Interface OrderSetReturnShipmentStateAction
- All Superinterfaces:
OrderUpdateAction
,ResourceUpdateAction<OrderUpdateAction>
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
OrderSetReturnShipmentStateAction orderSetReturnShipmentStateAction = OrderSetReturnShipmentStateAction.builder()
.shipmentState(ReturnShipmentState.ADVISED)
.build()
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
discriminator value for OrderSetReturnShipmentStateAction -
Method Summary
Modifier and TypeMethodDescriptionbuilder()
builder factory method for OrderSetReturnShipmentStateActionbuilder
(OrderSetReturnShipmentStateAction template) create builder for OrderSetReturnShipmentStateAction instancedeepCopy
(OrderSetReturnShipmentStateAction template) factory method to create a deep copy of OrderSetReturnShipmentStateActionid
of the ReturnItem to update.key
of the ReturnItem to update.@NotNull ReturnShipmentState
New shipment state of the ReturnItem.of()
factory methodof
(OrderSetReturnShipmentStateAction template) factory method to create a shallow copy OrderSetReturnShipmentStateActionvoid
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<OrderSetReturnShipmentStateAction>
gives a TypeReference for usage with Jackson DataBinddefault <T> T
accessor map functionMethods inherited from interface com.commercetools.api.models.order.OrderUpdateAction
getAction, withOrderUpdateAction
Methods inherited from interface com.commercetools.api.models.ResourceUpdateAction
get
-
Field Details
-
SET_RETURN_SHIPMENT_STATE
discriminator value for OrderSetReturnShipmentStateAction- 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 OrderSetReturnShipmentStateAction
-
of
factory method to create a shallow copy OrderSetReturnShipmentStateAction- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
deepCopy
@Nullable static OrderSetReturnShipmentStateAction deepCopy(@Nullable OrderSetReturnShipmentStateAction template) factory method to create a deep copy of OrderSetReturnShipmentStateAction- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
builder
builder factory method for OrderSetReturnShipmentStateAction- Returns:
- builder
-
builder
create builder for OrderSetReturnShipmentStateAction instance- Parameters:
template
- instance with prefilled values for the builder- Returns:
- builder
-
withOrderSetReturnShipmentStateAction
default <T> T withOrderSetReturnShipmentStateAction(Function<OrderSetReturnShipmentStateAction, 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<OrderSetReturnShipmentStateAction> typeReference()gives a TypeReference for usage with Jackson DataBind- Returns:
- TypeReference
-