Type Alias ErrorDetailsV2

A single error entry within an error response.

type ErrorDetailsV2 = {
    code?: string;
    detail?: string;
    meta?: odagRequests.MetaV2;
    title?: string;
}
Index
code?: string

A unique code used to identify the template form of the message in i18n tables (language independent).

detail?: string

The message describing the error.

Additional metadata associated with an error.

title?: string