Interface CustomerAddAddressAction

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

Adding an address to the Customer produces the CustomerAddressAdded Message.


Example to create an instance using the builder pattern

     CustomerAddAddressAction customerAddAddressAction = CustomerAddAddressAction.builder()
             .address(addressBuilder -> addressBuilder)
             .build()