import type * as Extend from "../../../../index"; /** * @example * { * splitter: { * id: "spl_1234567890" * }, * file: { * url: "https://example.com/multi-document.pdf" * } * } */ export interface SplitRunsCreateRequest { /** Reference to an existing splitter. One of `splitter` or `config` must be provided. */ splitter?: Extend.SplitRunsCreateRequestSplitter; /** Inline splitter configuration. One of `splitter` or `config` must be provided. */ config?: Extend.SplitConfig; /** The file to be split. Files can be provided as a URL or an Extend file ID. */ file: Extend.SplitRunsCreateRequestFile; priority?: Extend.RunPriority; metadata?: Extend.RunMetadata; }