@auth0/auth0-acul-react - v1.0.0
    Preparing search index...

    Interface UsernameValidationError

    Represents a single username validation error returned during validation.

    Each error has a machine-readable code and a human-readable message.

    interface UsernameValidationError {
        code: string;
        message: string;
        field: string;
    }
    Index

    Properties

    Properties

    code: string

    A unique identifier for the validation rule that failed.

    Example: "username-too-short", "username-invalid-characters"

    message: string

    A human-readable description of the error.

    Example: "Username must be at least 3 characters long."

    field: string

    The field associated with the validation error, typically "username", "email", or "phone".