import type * as Extend from "../index"; /** * Reference to an existing classifier. One of `classifier` or `config` must be provided. */ export interface ClassifyRequestClassifier { /** The ID of the classifier to use. */ id: string; version?: Extend.ProcessorVersionString; /** Optional partial configuration override. Only the fields you provide will override the classifier's saved configuration. For example, you can pass only `classificationRules` without providing `classifications`. */ overrideConfig?: Extend.ClassifyOverrideConfig; }