Interface CustomerChangeEmailAction

All Superinterfaces:
CustomerUpdateAction, ResourceUpdateAction<CustomerUpdateAction>

public interface CustomerChangeEmailAction extends CustomerUpdateAction

Changes the email of the Customer and sets the isEmailVerified property to false. This update action generates a CustomerEmailChanged Message.


Example to create an instance using the builder pattern

     CustomerChangeEmailAction customerChangeEmailAction = CustomerChangeEmailAction.builder()
             .email("{email}")
             .build()