Interface JobError

Job error.

interface JobError {
    code?: number;
    details?: string[];
    message?: string;
}

Properties

code?: number

The status code.

details?: string[]

A list of messages that carry the error details. There is a common set of message types for APIs to use.

message?: string

A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the details field.