/** * 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 KnowledgebaseArticle { /** Tags associated with the article. */ tags?: string[]; /** The user who created this Field. */ createdAt?: string; /** Timestamp(milli) of the Field creation. */ createdBy?: WebitelKnowledgebaseLookup; /** * Unique ID of the latest version of the update. * This ID changes after any update to the underlying value(s). */ etag?: string; /** Indicates that the article has children. */ hasChildren?: boolean; /** The unique ID of the association. Never changes. */ id?: string; /** The parent article ID. */ parentArticle?: string; /** Indicates that the article is pinned on the top of list. */ pinned?: boolean; /** Space ID associated with. */ spaceId?: string; /** Indicates the state of the article. */ state?: boolean; /** The text content of the article. */ text?: string; /** The title of the article. */ title?: string; /** * Timestamp(milli) of the last Field update. * Take part in Etag generation. */ updatedAt?: string; /** The user who performed last Update. */ updatedBy?: WebitelKnowledgebaseLookup; /** * READONLY. Operational attributes * Version of the latest update. Numeric sequence. */ ver?: number; }