Interface MyCustomerChangeAddressAction

All Superinterfaces:
MyCustomerUpdateAction, ResourceUpdateAction<MyCustomerUpdateAction>
All Known Implementing Classes:
MyCustomerChangeAddressActionImpl

Changing an address of the Customer produces the CustomerAddressChanged Message.

Either addressId or addressKey is required.


Example to create an instance using the builder pattern

     MyCustomerChangeAddressAction myCustomerChangeAddressAction = MyCustomerChangeAddressAction.builder()
             .address(addressBuilder -> addressBuilder)
             .build()