Type Alias ErrorResponseItem

type ErrorResponseItem = {
    code?: string | null;
    detail?: string | null;
    meta?: unknown | null;
    title?: string | null;
}
Index
code?: string | null

The error code.

detail?: string | null

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

meta?: unknown | null

Additional error metadata.

title?: string | null

Summary of the problem.