Package version:

Error details.

interface ErrorDetail {
    additionalProperties?: any;
    code: string;
    message: string;
    resources?: {};
    target?: string;
    value?: string;
}

Properties

additionalProperties?: any

Additional properties that can be provided on the error details object

code: string

The error's code.

message: string

A human readable error message.

resources?: {}

Indicates resources which were responsible for the error.

target?: string

Indicates which property in the request is responsible for the error.

value?: string

Indicates which value in 'target' is responsible for the error.