@webitel/api-services
    Preparing search index...

    Represents a comment associated with a case.

    interface WebitelCasesCaseComment {
        author?: GeneralLookup;
        canEdit?: boolean;
        caseId?: string;
        createdAt?: string;
        createdBy?: GeneralLookup;
        edited?: boolean;
        etag?: string;
        id?: string;
        roleIds?: string[];
        text?: string;
        updatedAt?: string;
        updatedBy?: GeneralLookup;
        ver?: number;
    }
    Index

    Properties

    author?: GeneralLookup

    Contact-author of the comment.

    canEdit?: boolean

    Indicates if the comment can be edited by current user.

    caseId?: string

    Optional relation to the associated case.

    createdAt?: string

    Timestamp (in milliseconds) of when the comment was created.

    createdBy?: GeneralLookup

    User who created the comment.

    edited?: boolean

    Indicates if the comment was edited; true if created_at < updated_at.

    etag?: string
    id?: string

    Main identifier for read, update, and delete operations.

    roleIds?: string[]
    text?: string

    The content of the comment.

    updatedAt?: string

    Timestamp (in milliseconds) of the last update.

    updatedBy?: GeneralLookup

    User who last updated the comment.

    ver?: number

    Version number of the comment, used for concurrency control.