interface Comment {
    collapsed: boolean;
    collapsible: boolean;
    content: string;
    createdAt: string;
    deletable: boolean;
    enablePictureComments: boolean;
    hideable: boolean;
    hotReplies: HotReply[];
    id: string;
    isPinned: boolean;
    level: number;
    likeCount: number;
    liked: boolean;
    pictures: Picture[];
    pinnable: boolean;
    readTrackInfo: ReadTrackInfo;
    replyCount: number;
    status: string;
    targetId: string;
    targetType: string;
    threadId: string;
    type: "COMMENT";
    urlsInText: UrlsInText[];
    user: User;
}

Properties

collapsed: boolean
collapsible: boolean
content: string
createdAt: string
deletable: boolean
enablePictureComments: boolean
hideable: boolean
hotReplies: HotReply[]
id: string
isPinned: boolean
level: number
likeCount: number
liked: boolean
pictures: Picture[]
pinnable: boolean
readTrackInfo: ReadTrackInfo
replyCount: number
status: string
targetId: string
targetType: string
threadId: string
type
urlsInText: UrlsInText[]
user: User