Interface CustomerAddressCustomFieldRemovedMessagePayload
- All Superinterfaces:
MessagePayload,MessagePayloadMixin
Generated after removing a Custom Field from an Address of a Customer using the Set CustomField in Address update action.
Example to create an instance using the builder pattern
CustomerAddressCustomFieldRemovedMessagePayload customerAddressCustomFieldRemovedMessagePayload = CustomerAddressCustomFieldRemovedMessagePayload.builder()
.name("{name}")
.build()
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final Stringdiscriminator value for CustomerAddressCustomFieldRemovedMessagePayload -
Method Summary
Modifier and TypeMethodDescriptionbuilder()builder factory method for CustomerAddressCustomFieldRemovedMessagePayloadcreate builder for CustomerAddressCustomFieldRemovedMessagePayload instancecopyDeep()factory method to create a deep copy of CustomerAddressCustomFieldRemovedMessagePayloadidof the Address from which the Custom Field was removed.@NotNull StringgetName()Name of the Custom Field that was removed.of()factory methodfactory method to create a shallow copy CustomerAddressCustomFieldRemovedMessagePayloadvoidsetAddressId(String addressId) idof the Address from which the Custom Field was removed.voidName of the Custom Field that was removed.static com.fasterxml.jackson.core.type.TypeReference<CustomerAddressCustomFieldRemovedMessagePayload>gives a TypeReference for usage with Jackson DataBinddefault <T> TwithCustomerAddressCustomFieldRemovedMessagePayload(Function<CustomerAddressCustomFieldRemovedMessagePayload, T> helper) accessor map functionMethods inherited from interface com.commercetools.api.models.message.MessagePayload
getType, withMessagePayloadMethods inherited from interface com.commercetools.api.models.message.MessagePayloadMixin
as
-
Field Details
-
CUSTOMER_ADDRESS_CUSTOM_FIELD_REMOVED
discriminator value for CustomerAddressCustomFieldRemovedMessagePayload- See Also:
-
-
Method Details
-
getName
Name of the Custom Field that was removed.
- Returns:
- name
-
getAddressId
String getAddressId()idof the Address from which the Custom Field was removed.- Returns:
- addressId
-
setName
Name of the Custom Field that was removed.
- Parameters:
name- value to be set
-
setAddressId
idof the Address from which the Custom Field was removed.- Parameters:
addressId- value to be set
-
of
factory method- Returns:
- instance of CustomerAddressCustomFieldRemovedMessagePayload
-
of
static CustomerAddressCustomFieldRemovedMessagePayload of(CustomerAddressCustomFieldRemovedMessagePayload template) factory method to create a shallow copy CustomerAddressCustomFieldRemovedMessagePayload- Parameters:
template- instance to be copied- Returns:
- copy instance
-
copyDeep
- Specified by:
copyDeepin interfaceMessagePayload
-
deepCopy
@Nullable static CustomerAddressCustomFieldRemovedMessagePayload deepCopy(@Nullable CustomerAddressCustomFieldRemovedMessagePayload template) factory method to create a deep copy of CustomerAddressCustomFieldRemovedMessagePayload- Parameters:
template- instance to be copied- Returns:
- copy instance
-
builder
builder factory method for CustomerAddressCustomFieldRemovedMessagePayload- Returns:
- builder
-
builder
static CustomerAddressCustomFieldRemovedMessagePayloadBuilder builder(CustomerAddressCustomFieldRemovedMessagePayload template) create builder for CustomerAddressCustomFieldRemovedMessagePayload instance- Parameters:
template- instance with prefilled values for the builder- Returns:
- builder
-
withCustomerAddressCustomFieldRemovedMessagePayload
default <T> T withCustomerAddressCustomFieldRemovedMessagePayload(Function<CustomerAddressCustomFieldRemovedMessagePayload, 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<CustomerAddressCustomFieldRemovedMessagePayload> typeReference()gives a TypeReference for usage with Jackson DataBind- Returns:
- TypeReference
-