React Native Firebase
    Preparing search index...

    Interface PasswordValidationStatus

    A structure indicating which password policy requirements were met or violated and what the requirements are.

    interface PasswordValidationStatus {
        containsLowercaseLetter?: boolean;
        containsNonAlphanumericCharacter?: boolean;
        containsNumericCharacter?: boolean;
        containsUppercaseLetter?: boolean;
        isValid: boolean;
        meetsMaxPasswordLength?: boolean;
        meetsMinPasswordLength?: boolean;
        passwordPolicy: PasswordPolicy;
    }
    Index

    Properties

    containsLowercaseLetter?: boolean

    Whether the password contains a lowercase letter, or undefined if not required.

    containsNonAlphanumericCharacter?: boolean

    Whether the password contains a non-alphanumeric character, or undefined if not required.

    containsNumericCharacter?: boolean

    Whether the password contains a numeric character, or undefined if not required.

    containsUppercaseLetter?: boolean

    Whether the password contains an uppercase letter, or undefined if not required.

    isValid: boolean

    Whether the password meets all requirements.

    meetsMaxPasswordLength?: boolean

    Whether the password meets the maximum password length, or undefined if not required.

    meetsMinPasswordLength?: boolean

    Whether the password meets the minimum password length, or undefined if not required.

    passwordPolicy: PasswordPolicy

    The policy used to validate the password.