Interface ThreadedCommentInterface

interface ThreadedCommentInterface {
    appUrl: string;
    authorId: string;
    comments: ThreadedCommentInterface[];
    createdAt: string;
    deleted: boolean;
    entityType: string;
    externalId: null | string;
    groupMentionIds: string[];
    id: number;
    memberMentionIds: string[];
    mentionIds: string[];
    text: string;
    updatedAt: string;
}

Hierarchy

  • default
    • ThreadedCommentInterface

Properties

appUrl: string
authorId: string
createdAt: string
deleted: boolean
entityType: string
externalId: null | string
groupMentionIds: string[]
id: number
memberMentionIds: string[]
mentionIds: string[]
text: string
updatedAt: string