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

    Interface IllustSeriesDetail

    Illust series metadata returned by GET /v1/illust/series.

    interface IllustSeriesDetail {
        caption: string;
        coverImageUrls: { medium: string };
        createDate: string;
        height: number;
        id: number;
        seriesWorkCount: number;
        title: string;
        user: PixivUser;
        watchlistAdded: boolean;
        width: number;
    }
    Index

    Properties

    caption: string

    Series description / caption.

    coverImageUrls: { medium: string }

    Cover image URLs.

    createDate: string

    ISO 8601 date-time string of when the series was created.

    height: number

    Canvas height of the cover image in pixels.

    id: number

    Series ID.

    seriesWorkCount: number

    Number of works in the series.

    title: string

    Series title.

    user: PixivUser

    Author of the series.

    watchlistAdded: boolean

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

    width: number

    Canvas width of the cover image in pixels.