Documentation
    Preparing search index...

    Interface Comment

    interface Comment {
        authorUserId: string;
        createdAtTimestamp: number;
        creatorUserId?: string;
        id: string;
        isDeleted: boolean;
        lastModifiedTimestamp: number;
        objectId: string;
        objectType: COMMENT;
        organizationId: string;
        reactions: CommentReaction[];
        status: ObjectStatus;
        taggedUserIds: string[];
        tenantId: string;
        tenantName?: string;
        textContent: string;
        threadCommentId: string | null;
    }

    Hierarchy

    Index
    authorUserId: string
    createdAtTimestamp: number
    creatorUserId?: string
    id: string
    isDeleted: boolean
    lastModifiedTimestamp: number
    objectId: string
    objectType: COMMENT
    organizationId: string
    reactions: CommentReaction[]
    status: ObjectStatus
    taggedUserIds: string[]
    tenantId: string
    tenantName?: string
    textContent: string
    threadCommentId: string | null