import type * as Extend from "../../../../index"; /** * @example * {} */ export interface ProcessorUpdateRequest { /** The workspace ID to target. **Required** when using an organization-scoped API key; optional for workspace-scoped keys (the key is already tied to a workspace). See [Authentication](https://docs.extend.ai/2026-02-09/developers/authentication) for details on API key scopes. */ "x-extend-workspace-id"?: string; /** The new name for the processor */ name?: string; /** * The new configuration for the processor. The type of configuration must match the processor type: * * For classification processors, use `ClassificationConfig` * * For extraction processors, use `ExtractionConfig` * * For splitter processors, use `SplitterConfig` */ config?: Extend.ProcessorUpdateRequestConfig; }