An object representing an error response from the Eval API.

interface EvalAPIError {
    code: string;
    message: string;
}

Properties

Properties

code: string

The error code.

message: string

The error message.