Error response returned when the request is unsuccessful.

Export

ModelError

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

Properties

Properties

code: string

An error code that identifies the type of error that occurred.

Memberof

ModelError

details?: string

Additional details that can help the caller understand or fix the issue.

Memberof

ModelError

message: string

A message that describes the error condition.

Memberof

ModelError