import type * as Extend from "../../../../index"; /** * @example * { * inputs: [{ * file: { * url: "https://example.com/document1.pdf" * }, * metadata: { * "customerId": "cust_abc123" * } * }, { * file: { * url: "https://example.com/document2.pdf" * }, * metadata: { * "customerId": "cust_def456" * } * }, { * file: { * text: "This is some raw text to parse." * }, * metadata: { * "source": "manual-entry" * } * }] * } */ export interface ParseRunsCreateBatchRequest { /** An array of inputs to parse. Each item produces one parse run. Must contain between 1 and 1,000 items. */ inputs: Extend.ParseRunsCreateBatchRequestInputsItem[]; /** Optional parsing configuration applied to every run in this batch. If omitted, default parse settings are used. */ config?: Extend.ParseConfig; priority?: Extend.RunPriority; }