Error response returned when the request is unsuccessful.

Export

ModelError

interface ModelError {
    code: string;
    details?: string;
    message: string;
}

Properties

Properties

code: string

The code that identifies the type of error condition.

Memberof

ModelError

details?: string

Additional information, if available, to clarify the error condition.

Memberof

ModelError

message: string

A human readable description of the error condition.

Memberof

ModelError