Interface StagedOrderUpdateItemShippingAddressAction
- All Superinterfaces:
ResourceUpdateAction<StagedOrderUpdateAction>,StagedOrderUpdateAction
Updates an address in itemShippingAddresses by keeping the Address key.
Example to create an instance using the builder pattern
StagedOrderUpdateItemShippingAddressAction stagedOrderUpdateItemShippingAddressAction = StagedOrderUpdateItemShippingAddressAction.builder()
.address(addressBuilder -> addressBuilder)
.build()
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final Stringdiscriminator value for StagedOrderUpdateItemShippingAddressAction -
Method Summary
Modifier and TypeMethodDescriptionbuilder()builder factory method for StagedOrderUpdateItemShippingAddressActioncreate builder for StagedOrderUpdateItemShippingAddressAction instancecopyDeep()factory method to create a deep copy of StagedOrderUpdateItemShippingAddressAction@NotNull @Valid BaseAddressThe new Address with the samekeyas the Address it will replace.of()factory methodof(StagedOrderUpdateItemShippingAddressAction template) factory method to create a shallow copy StagedOrderUpdateItemShippingAddressActionvoidsetAddress(BaseAddress address) The new Address with the samekeyas the Address it will replace.static com.fasterxml.jackson.core.type.TypeReference<StagedOrderUpdateItemShippingAddressAction>gives a TypeReference for usage with Jackson DataBinddefault <T> TwithStagedOrderUpdateItemShippingAddressAction(Function<StagedOrderUpdateItemShippingAddressAction, 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
-
UPDATE_ITEM_SHIPPING_ADDRESS
discriminator value for StagedOrderUpdateItemShippingAddressAction- See Also:
-
-
Method Details
-
getAddress
The new Address with the same
keyas the Address it will replace.- Returns:
- address
-
setAddress
The new Address with the same
keyas the Address it will replace.- Parameters:
address- value to be set
-
of
factory method- Returns:
- instance of StagedOrderUpdateItemShippingAddressAction
-
of
static StagedOrderUpdateItemShippingAddressAction of(StagedOrderUpdateItemShippingAddressAction template) factory method to create a shallow copy StagedOrderUpdateItemShippingAddressAction- Parameters:
template- instance to be copied- Returns:
- copy instance
-
copyDeep
StagedOrderUpdateItemShippingAddressAction copyDeep()- Specified by:
copyDeepin interfaceStagedOrderUpdateAction
-
deepCopy
@Nullable static StagedOrderUpdateItemShippingAddressAction deepCopy(@Nullable StagedOrderUpdateItemShippingAddressAction template) factory method to create a deep copy of StagedOrderUpdateItemShippingAddressAction- Parameters:
template- instance to be copied- Returns:
- copy instance
-
builder
builder factory method for StagedOrderUpdateItemShippingAddressAction- Returns:
- builder
-
builder
static StagedOrderUpdateItemShippingAddressActionBuilder builder(StagedOrderUpdateItemShippingAddressAction template) create builder for StagedOrderUpdateItemShippingAddressAction instance- Parameters:
template- instance with prefilled values for the builder- Returns:
- builder
-
withStagedOrderUpdateItemShippingAddressAction
default <T> T withStagedOrderUpdateItemShippingAddressAction(Function<StagedOrderUpdateItemShippingAddressAction, 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<StagedOrderUpdateItemShippingAddressAction> typeReference()gives a TypeReference for usage with Jackson DataBind- Returns:
- TypeReference
-