Interface MyCustomerChangePassword

All Known Implementing Classes:
MyCustomerChangePasswordImpl

public interface MyCustomerChangePassword
MyCustomerChangePassword
Example to create an instance using the builder pattern

     MyCustomerChangePassword myCustomerChangePassword = MyCustomerChangePassword.builder()
             .version(0.3)
             .currentPassword("{currentPassword}")
             .newPassword("{newPassword}")
             .build()
 
  • Method Details