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

    Interface UserBookmarksNovelParams

    Parameters for fetching a user's bookmarked novels.

    interface UserBookmarksNovelParams {
        filter?: "for_ios" | "for_android";
        maxBookmarkId?: number;
        offset?: number;
        restrict?: "private" | "public";
        tag?: string;
        userId: number;
    }
    Index

    Properties

    filter?: "for_ios" | "for_android"

    OS filter to apply (default: "for_ios").

    maxBookmarkId?: number

    Fetch bookmarks older than this bookmark ID (cursor-based pagination).

    offset?: number

    Zero-based offset for pagination.

    restrict?: "private" | "public"

    Visibility of the bookmarks to return (default: "public").

    tag?: string

    Limit results to bookmarks with this tag.

    userId: number

    ID of the user whose bookmarks to fetch.