/** * Generated by orval v7.21.0 🍺 * Do not edit manually. * Web4Ai API * OpenAPI spec version: 0.1.0 */ import type { JobType } from "./jobType"; import type { JobStatus } from "./jobStatus"; import type { JobDataResult } from "./jobDataResult"; import type { JobDataLastError } from "./jobDataLastError"; import type { JobDataRunAfter } from "./jobDataRunAfter"; import type { JobDataRunStartedAt } from "./jobDataRunStartedAt"; import type { JobDataCreatedAt } from "./jobDataCreatedAt"; import type { JobDataUpdatedAt } from "./jobDataUpdatedAt"; export interface JobData { job_id: string; job_type: JobType; status: JobStatus; attempts?: number; max_attempts?: number; result?: JobDataResult; last_error?: JobDataLastError; run_after?: JobDataRunAfter; run_started_at?: JobDataRunStartedAt; created_at?: JobDataCreatedAt; updated_at?: JobDataUpdatedAt; }