Interface MyCustomerChangeEmailAction

All Superinterfaces:
MyCustomerUpdateAction, ResourceUpdateAction<MyCustomerUpdateAction>

public interface MyCustomerChangeEmailAction extends MyCustomerUpdateAction

Changing the email of the Customer produces the CustomerEmailChanged Message.


Example to create an instance using the builder pattern

     MyCustomerChangeEmailAction myCustomerChangeEmailAction = MyCustomerChangeEmailAction.builder()
             .email("{email}")
             .build()