import type * as Extend from "../../../../index"; /** * @example * { * workflow: { * id: "wf_1234567890" * }, * inputs: [{ * file: { * url: "https://example.com/invoice1.pdf" * }, * metadata: { * "customerId": "cust_abc123" * } * }, { * file: { * url: "https://example.com/invoice2.pdf" * }, * metadata: { * "customerId": "cust_def456" * } * }] * } */ export interface WorkflowRunsCreateBatchRequest { workflow: Extend.WorkflowReference; /** An array of input objects to be processed by the workflow. Each object represents a single workflow run to be created. The array must contain at least 1 input and at most 1000 inputs. */ inputs: Extend.WorkflowRunsCreateBatchRequestInputsItem[]; }