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

    Interface IllustComment

    A single comment on an illust.

    Returned by GET /v1/illust/comments.

    interface IllustComment {
        comment: string;
        date: string;
        hasReplies?: boolean;
        id: number;
        parentComment?: Record<string, never> | IllustComment;
        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> | IllustComment

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

    user: PixivUser

    Author of the comment.