PasswordChangeHandler

public protocol PasswordChangeHandler : CancelableHandler

The object handling the old and new password provided by the end-user.

  • Specify the old password and the new password. To change a password, the SDK requires to provide the old password. When this method is invoked, the SDK will validate the provided password.

    Declaration

    Swift

    func passwords(_ oldPassword: String, _ newPassword: String)

    Parameters

    oldPassword

    the old password.

    newPassword

    the new password.