import type * as Extend from "../index"; /** * A batch run represents a batch of files submitted for processing via one of the batch endpoints (`POST /parse_runs/batch`, `POST /extract_runs/batch`, `POST /classify_runs/batch`, or `POST /split_runs/batch`). Use `GET /batch_runs/{id}` to poll the status. * * **Note:** This object is not used for workflow batch runs. See `POST /workflow_runs/batch` for workflow batching. */ export interface BatchRun { /** The type of object. Always `"batch_run"`. */ object: "batch_run"; /** * The unique identifier for this batch run. * * Example: `"bpr_Xj8mK2pL9nR4vT7qY5wZ"` */ id: string; status: Extend.BatchRunStatus; /** The number of individual runs in this batch. */ runCount: number; createdAt: Extend.CreatedAt; }