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

    Interface NovelSeriesDetail

    Novel series details returned by GET /v2/novel/series.

    interface NovelSeriesDetail {
        caption: string;
        contentCount: number;
        displayText: string;
        id: number;
        isConcluded: boolean;
        isOriginal: boolean;
        novelAiType: number;
        title: string;
        totalCharacterCount: number;
        user: PixivUser;
        watchlistAdded: boolean;
    }
    Index

    Properties

    caption: string

    Series description / caption.

    contentCount: number

    Number of novels in the series.

    displayText: string

    Human-readable series label / tagline.

    id: number

    Series ID.

    isConcluded: boolean

    Whether the series has been marked as concluded by the author.

    isOriginal: boolean

    Whether every novel in the series is original (not fan fiction).

    novelAiType: number

    AI-generated content flag: 0 = no AI, 1 = partial AI, 2 = fully AI

    title: string

    Series title.

    totalCharacterCount: number

    Total character count across all novels in the series.

    user: PixivUser

    Author of the series.

    watchlistAdded: boolean

    Whether the authenticated user has added this series to their watchlist.