Interface CustomerRemoveAddressAction
- All Superinterfaces:
CustomerUpdateAction
,ResourceUpdateAction<CustomerUpdateAction>
- All Known Implementing Classes:
CustomerRemoveAddressActionImpl
Removing an address from the Customer produces the CustomerAddressRemoved Message.
Either addressId
or addressKey
is required.
Example to create an instance using the builder pattern
CustomerRemoveAddressAction customerRemoveAddressAction = CustomerRemoveAddressAction.builder()
.build()
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
discriminator value for CustomerRemoveAddressAction -
Method Summary
Modifier and TypeMethodDescriptionbuilder()
builder factory method for CustomerRemoveAddressActionbuilder
(CustomerRemoveAddressAction template) create builder for CustomerRemoveAddressAction instancestatic CustomerRemoveAddressAction
deepCopy
(CustomerRemoveAddressAction template) factory method to create a deep copy of CustomerRemoveAddressActionid
of the Address to remove.key
of the Address to remove.static CustomerRemoveAddressAction
of()
factory methodstatic CustomerRemoveAddressAction
of
(CustomerRemoveAddressAction template) factory method to create a shallow copy CustomerRemoveAddressActionvoid
setAddressId
(String addressId) id
of the Address to remove.void
setAddressKey
(String addressKey) key
of the Address to remove.static com.fasterxml.jackson.core.type.TypeReference<CustomerRemoveAddressAction>
gives a TypeReference for usage with Jackson DataBinddefault <T> T
accessor map functionMethods inherited from interface com.commercetools.api.models.customer.CustomerUpdateAction
getAction, withCustomerUpdateAction
Methods inherited from interface com.commercetools.api.models.ResourceUpdateAction
get
-
Field Details
-
REMOVE_ADDRESS
discriminator value for CustomerRemoveAddressAction- See Also:
-
-
Method Details
-
getAddressId
String getAddressId()id
of the Address to remove.- Returns:
- addressId
-
getAddressKey
String getAddressKey()key
of the Address to remove.- Returns:
- addressKey
-
setAddressId
id
of the Address to remove.- Parameters:
addressId
- value to be set
-
setAddressKey
key
of the Address to remove.- Parameters:
addressKey
- value to be set
-
of
factory method- Returns:
- instance of CustomerRemoveAddressAction
-
of
factory method to create a shallow copy CustomerRemoveAddressAction- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
deepCopy
@Nullable static CustomerRemoveAddressAction deepCopy(@Nullable CustomerRemoveAddressAction template) factory method to create a deep copy of CustomerRemoveAddressAction- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
builder
builder factory method for CustomerRemoveAddressAction- Returns:
- builder
-
builder
create builder for CustomerRemoveAddressAction instance- Parameters:
template
- instance with prefilled values for the builder- Returns:
- builder
-
withCustomerRemoveAddressAction
accessor map function- Type Parameters:
T
- mapped type- Parameters:
helper
- function to map the object- Returns:
- mapped value
-
typeReference
gives a TypeReference for usage with Jackson DataBind- Returns:
- TypeReference
-