mindee
    Preparing search index...

    Interface ErrorDetails

    interface ErrorDetails {
        code: string;
        detail: string;
        errors: ErrorItem[];
        status: number;
        title: string;
    }

    Implemented by

    Index

    Properties

    code: string

    A machine-readable code specific to the occurrence of the problem.

    detail: string

    A human-readable explanation specific to the occurrence of the problem.

    errors: ErrorItem[]

    A machine-readable code specific to the occurrence of the problem.

    status: number

    The HTTP status code returned by the server.

    title: string

    A short, human-readable summary of the problem.