import type * as SarvamAI from "../index.js"; export interface DocAiJobStatusResponse { /** The unique identifier of the job. */ job_id: string; /** Current status of the job. Terminal statuses: `completed`, `partially_completed`, `failed`, `rejected`. */ status: string; /** Job pipeline: `digitise` or `extract`. */ pipeline: string; usage: SarvamAI.DocAiUsage; /** Job creation timestamp. */ created_at: string; /** Timestamp of the last job update. */ updated_at: string; }