Interface StoryCommentInterface

interface StoryCommentInterface {
    appUrl: string;
    authorId: string;
    blocker: boolean;
    createdAt: Date;
    deleted: boolean;
    entityType: string;
    externalId: null | string;
    groupMentionIds: string[];
    id: number;
    memberMentionIds: string[];
    parentId: null | number;
    position: number;
    storyId: number;
    text: null | string;
    unblocksParent: boolean;
    updatedAt: Date;
}

Hierarchy

  • default
    • StoryCommentInterface

Properties

appUrl: string
authorId: string
blocker: boolean
createdAt: Date
deleted: boolean
entityType: string
externalId: null | string
groupMentionIds: string[]
id: number
memberMentionIds: string[]
parentId: null | number
position: number
storyId: number
text: null | string
unblocksParent: boolean
updatedAt: Date