Interface OrderUpdateItemShippingAddressAction
- All Superinterfaces:
OrderUpdateAction
,ResourceUpdateAction<OrderUpdateAction>
- All Known Implementing Classes:
OrderUpdateItemShippingAddressActionImpl
Updates an address in itemShippingAddresses
by keeping the Address key
.
Example to create an instance using the builder pattern
OrderUpdateItemShippingAddressAction orderUpdateItemShippingAddressAction = OrderUpdateItemShippingAddressAction.builder()
.address(addressBuilder -> addressBuilder)
.build()
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
discriminator value for OrderUpdateItemShippingAddressAction -
Method Summary
Modifier and TypeMethodDescriptionbuilder()
builder factory method for OrderUpdateItemShippingAddressActionbuilder
(OrderUpdateItemShippingAddressAction template) create builder for OrderUpdateItemShippingAddressAction instancedeepCopy
(OrderUpdateItemShippingAddressAction template) factory method to create a deep copy of OrderUpdateItemShippingAddressAction@NotNull @Valid BaseAddress
The new Address with the samekey
as the Address it will replace.of()
factory methodof
(OrderUpdateItemShippingAddressAction template) factory method to create a shallow copy OrderUpdateItemShippingAddressActionvoid
setAddress
(BaseAddress address) The new Address with the samekey
as the Address it will replace.static com.fasterxml.jackson.core.type.TypeReference<OrderUpdateItemShippingAddressAction>
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
-
UPDATE_ITEM_SHIPPING_ADDRESS
discriminator value for OrderUpdateItemShippingAddressAction- See Also:
-
-
Method Details
-
getAddress
The new Address with the same
key
as the Address it will replace.- Returns:
- address
-
setAddress
The new Address with the same
key
as the Address it will replace.- Parameters:
address
- value to be set
-
of
factory method- Returns:
- instance of OrderUpdateItemShippingAddressAction
-
of
factory method to create a shallow copy OrderUpdateItemShippingAddressAction- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
deepCopy
@Nullable static OrderUpdateItemShippingAddressAction deepCopy(@Nullable OrderUpdateItemShippingAddressAction template) factory method to create a deep copy of OrderUpdateItemShippingAddressAction- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
builder
builder factory method for OrderUpdateItemShippingAddressAction- Returns:
- builder
-
builder
static OrderUpdateItemShippingAddressActionBuilder builder(OrderUpdateItemShippingAddressAction template) create builder for OrderUpdateItemShippingAddressAction instance- Parameters:
template
- instance with prefilled values for the builder- Returns:
- builder
-
withOrderUpdateItemShippingAddressAction
default <T> T withOrderUpdateItemShippingAddressAction(Function<OrderUpdateItemShippingAddressAction, 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<OrderUpdateItemShippingAddressAction> typeReference()gives a TypeReference for usage with Jackson DataBind- Returns:
- TypeReference
-