/** * Webitel API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 24.04.0 * Contact: support@webitel.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { WebitelKnowledgebaseLookup } from './webitel-knowledgebase-lookup'; /** * * @export * @interface WebitelKnowledgebaseArticle */ export interface WebitelKnowledgebaseArticle { /** * The user who created this Field. * @type {string} * @memberof WebitelKnowledgebaseArticle */ created_at?: string; /** * * @type {WebitelKnowledgebaseLookup} * @memberof WebitelKnowledgebaseArticle */ created_by?: WebitelKnowledgebaseLookup; /** * Unique ID of the latest version of the update. This ID changes after any update to the underlying value(s). * @type {string} * @memberof WebitelKnowledgebaseArticle */ etag?: string; /** * Indicates that the article has children. * @type {boolean} * @memberof WebitelKnowledgebaseArticle */ has_children?: boolean; /** * The unique ID of the association. Never changes. * @type {string} * @memberof WebitelKnowledgebaseArticle */ id?: string; /** * The parent article ID. * @type {string} * @memberof WebitelKnowledgebaseArticle */ parent_article?: string; /** * Indicates that the article is pinned on the top of list. * @type {boolean} * @memberof WebitelKnowledgebaseArticle */ pinned?: boolean; /** * Space ID associated with. * @type {string} * @memberof WebitelKnowledgebaseArticle */ space_id?: string; /** * Indicates the state of the article. * @type {boolean} * @memberof WebitelKnowledgebaseArticle */ state?: boolean; /** * Tags associated with the article. * @type {Array} * @memberof WebitelKnowledgebaseArticle */ tags?: Array; /** * The text content of the article. * @type {string} * @memberof WebitelKnowledgebaseArticle */ text?: string; /** * The title of the article. * @type {string} * @memberof WebitelKnowledgebaseArticle */ title?: string; /** * Timestamp(milli) of the last Field update. Take part in Etag generation. * @type {string} * @memberof WebitelKnowledgebaseArticle */ updated_at?: string; /** * * @type {WebitelKnowledgebaseLookup} * @memberof WebitelKnowledgebaseArticle */ updated_by?: WebitelKnowledgebaseLookup; /** * READONLY. Operational attributes Version of the latest update. Numeric sequence. * @type {number} * @memberof WebitelKnowledgebaseArticle */ ver?: number; } //# sourceMappingURL=webitel-knowledgebase-article.d.ts.map