import type * as Extend from "../../../index"; /** * Reference to the extractor to run against every input in this batch. */ export interface ExtractRunsCreateBatchRequestExtractor { /** The ID of the extractor to use. */ id: string; version?: Extend.ProcessorVersionString; /** Optional partial configuration override applied to every run in this batch. Only the fields you provide will override the extractor's saved configuration. */ overrideConfig?: Extend.ExtractOverrideConfigJson; }