import type * as Extend from "../../../index"; /** * Reference to the classifier to run against every input in this batch. */ export interface ClassifyRunsCreateBatchRequestClassifier { /** The ID of the classifier 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 classifier's saved configuration. */ overrideConfig?: Extend.ClassifyOverrideConfig; }