The last error associated with this run step. Will be null if there are no errors.

interface LastError {
    code: "server_error" | "rate_limit_exceeded";
    message: string;
}

Properties

Properties

code: "server_error" | "rate_limit_exceeded"

One of server_error or rate_limit_exceeded.

message: string

A human-readable description of the error.