Interface CustomerChangeAddressAction

All Superinterfaces:
CustomerUpdateAction, ResourceUpdateAction<CustomerUpdateAction>
All Known Implementing Classes:
CustomerChangeAddressActionImpl

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

     CustomerChangeAddressAction customerChangeAddressAction = CustomerChangeAddressAction.builder()
             .address(addressBuilder -> addressBuilder)
             .build()