JobResults
Type Alias: JobResults
type JobResults = {
error: string;
jobStatus: "created" | "started" | "finished" | "failed" | "used" | "restarted";
results: JobResult[];
success: boolean;
};
Defined in: packages/api/src/client/types.gen.ts:133
Type declaration
error?
optional error: string;
Error message if the job failed.
jobStatus?
optional jobStatus: "created" | "started" | "finished" | "failed" | "used" | "restarted";
The current status of the job.
results?
optional results: JobResult[];
Results for each transaction in the job.
success?
optional success: boolean;
Indicates whether the job was successful.
Updated 10 days ago