@book000/pixivts - v0.63.0
    Preparing search index...

    Interface NovelComment

    A single comment on a novel.

    Returned by GET /v1/novel/comments.

    interface NovelComment {
        comment: string;
        date: string;
        hasReplies?: boolean;
        id: number;
        parentComment?: Record<string, never> | NovelComment;
        user: PixivUser;
    }
    Index
    comment: string

    Comment body text.

    date: string

    ISO 8601 date-time string of when the comment was posted.

    hasReplies?: boolean

    Whether this comment has replies.

    id: number

    Comment ID.

    parentComment?: Record<string, never> | NovelComment

    The comment this is a reply to, or {} (empty object) for a top-level comment.

    user: PixivUser

    Author of the comment.