@auth0/nextjs-auth0 - v4.11.0
    Preparing search index...

    Class MyAccountApiError

    Error class representing a connect account request error.

    Hierarchy (View Summary)

    Index

    Constructors

    • Parameters

      • __namedParameters: {
            detail: string;
            status: number;
            title: string;
            type: string;
            validationErrors?: {
                detail: string;
                field?: string;
                pointer?: string;
                source?: string;
            }[];
        }

      Returns MyAccountApiError

    Properties

    code: string = "my_account_api_error"
    detail: string
    name: string = "MyAccountApiError"
    status: number
    title: string
    type: string
    validationErrors?: {
        detail: string;
        field?: string;
        pointer?: string;
        source?: string;
    }[]

    Type Declaration

    • detail: string

      A human-readable description of the specific error. Required.

    • Optionalfield?: string

      The name of the invalid parameter. Optional.

    • Optionalpointer?: string

      A JSON Pointer that points to the exact location of the error in a JSON document being validated. Optional.

    • Optionalsource?: string

      Specifies the source of the error (e.g., body, query, or header in an HTML message). Optional.