import type * as Extend from "../../../../index"; /** * @example * { * name: "Document Classifier v2" * } */ export interface ClassifiersUpdateRequest { /** 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 of the classifier. */ name?: string; /** The new configuration for the classifier. This will update the draft version of the classifier. */ config?: Extend.ClassifyConfig; }