Package version:

Interface ApiError

Api error.

interface ApiError {
    code?: string;
    details?: ApiErrorBase[];
    innererror?: InnerError;
    message?: string;
    target?: string;
}

Properties

code?: string

The error code.

details?: ApiErrorBase[]

The Api error details

innererror?: InnerError

The Api inner error

message?: string

The error message.

target?: string

The target of the particular error.