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

    Interface NovelCommentsPage

    Page response for GET /v1/novel/comments.

    interface NovelCommentsPage {
        commentAccessControl?: number;
        comments: NovelComment[];
        nextUrl: string | null;
        totalComments?: number;
    }
    Index
    commentAccessControl?: number

    Who is permitted to post comments (may be absent).

    comments: NovelComment[]

    Comments on this page.

    nextUrl: string | null

    URL to the next page, or null when this is the last page.

    totalComments?: number

    Total number of comments on the novel (present only when includeTotalComments is requested).