@webitel/api-services
    Preparing search index...
    interface KnowledgebaseArticle {
        createdAt?: string;
        createdBy?: WebitelKnowledgebaseLookup;
        etag?: string;
        hasChildren?: boolean;
        id?: string;
        parentArticle?: string;
        pinned?: boolean;
        spaceId?: string;
        state?: boolean;
        tags?: string[];
        text?: string;
        title?: string;
        updatedAt?: string;
        updatedBy?: WebitelKnowledgebaseLookup;
        ver?: number;
    }
    Index

    Properties

    createdAt?: string

    The user who created this Field.

    Timestamp(milli) of the Field creation.

    etag?: string

    Unique ID of the latest version of the update. This ID changes after any update to the underlying value(s).

    hasChildren?: boolean

    Indicates that the article has children.

    id?: string

    The unique ID of the association. Never changes.

    parentArticle?: string

    The parent article ID.

    pinned?: boolean

    Indicates that the article is pinned on the top of list.

    spaceId?: string

    Space ID associated with.

    state?: boolean

    Indicates the state of the article.

    tags?: string[]

    Tags associated with the article.

    text?: string

    The text content of the article.

    title?: string

    The title of the article.

    updatedAt?: string

    Timestamp(milli) of the last Field update. Take part in Etag generation.

    The user who performed last Update.

    ver?: number

    READONLY. Operational attributes Version of the latest update. Numeric sequence.