/** * Generated by orval v8.19.0 🍺 * Do not edit manually. * Webitel API * OpenAPI spec version: 24.04.0 */ import type { WebitelKnowledgebaseLookup } from './webitelKnowledgebaseLookup.zod'; export interface KnowledgebaseArticleVersion { /** Tags associated with the article. */ tags?: string[]; /** The unique ID of the association. Never changes. */ id?: string; /** The parent article ID. */ parentArticle?: string; /** Space ID associated with. */ spaceId?: string; /** The text content of the article. */ text?: string; /** The title of the article. */ title?: string; /** Timestamp(milli) of the last Field update. */ updatedAt?: string; /** The user who loaded this attachment. */ updatedBy?: WebitelKnowledgebaseLookup; /** Version of the latest update. Numeric sequence. */ ver?: number; }