ETASCOM CRM V3 - Documentation API
    Preparing search index...

    Interface PostComment

    interface PostComment {
        id: string;
        postId: string;
        authorId: string;
        content: string;
        parentId?: string;
        createdAt: Date;
        updatedAt: Date;
        author: { id: string; name: string; email: string; avatar?: string };
        parent?: PostComment;
        replies: PostComment[];
        repliesCount: number;
    }
    Index

    Properties

    id: string
    postId: string
    authorId: string
    content: string
    parentId?: string
    createdAt: Date
    updatedAt: Date
    author: { id: string; name: string; email: string; avatar?: string }
    parent?: PostComment
    replies: PostComment[]
    repliesCount: number