import type * as Extend from "../index"; export interface ClassifierVersion { /** The type of object. Will always be `"classifier_version"`. */ object: "classifier_version"; /** * The unique identifier for this version of the classifier. * * Example: `"clv_xK9mLPqRtN3vS8wF5hB2cQ"` */ id: string; /** * A description of this version of the classifier. * * Example: `"Added new document types for Q4 processing"` */ description: string | null; /** * The version number or identifier for this specific version of the classifier. The draft version will have version="draft". * * Examples: `"1.0"`, `"2.1"`, `"draft"` */ version: string; /** The configuration settings for this version of the classifier. */ config: Extend.ClassifyConfig; /** * The ID of the classifier that this version belongs to. * * Example: `"cl_Xj8mK2pL9nR4vT7qY5wZ"` */ classifierId: string; createdAt: Extend.CreatedAt; }