Member Junction
    Preparing search index...

    Interface CredentialValidationResult

    Result of credential validation.

    interface CredentialValidationResult {
        errors: string[];
        isValid: boolean;
        validatedAt: Date;
        warnings: string[];
    }
    Index

    Properties

    errors: string[]

    Errors encountered during validation.

    isValid: boolean

    Whether the credential is valid.

    validatedAt: Date

    When the validation occurred.

    warnings: string[]

    Non-fatal warnings.