Type Alias ErrorResponseItem

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

Properties

code?: string

The error code.

detail?: string

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

meta?: unknown

Additional error metadata.

title?: string

Summary of the problem.