Package version:

Body of the error response returned from the API.

interface ErrorEntity {
    code?: string;
    details?: ErrorEntity[];
    extendedCode?: string;
    innerErrors?: ErrorEntity[];
    message?: string;
    messageTemplate?: string;
    parameters?: string[];
    target?: string;
}

Properties

code?: string

Basic error code.

details?: ErrorEntity[]

Error Details.

extendedCode?: string

Type of error.

innerErrors?: ErrorEntity[]

Inner errors.

message?: string

Any details of the error.

messageTemplate?: string

Message template.

parameters?: string[]

Parameters for the template.

target?: string

The error target.