A service error message.

interface ServiceError {
    code: string;
    message: string;
    more_info?: string;
}

Properties

code: string

A simple code that should convey the general sense of the error.

message: string

The message that describes the error.

more_info?: string

A URL to a more detailed explanation when available.