AniLink - v1.29.2
    Preparing search index...

    MediaListCollectionResponse is an interface representing the response from a media list collection query. It includes the MediaListCollection object with its lists and hasNextChunk status.

    interface MediaListCollectionResponse {
        hasNextChunk: boolean;
        lists: {
            entries: {
                advancedScores: number[];
                completedAt: FuzzyDate;
                createdAt: number;
                customLists: boolean[];
                hiddenFromStatusLists: boolean;
                id: number;
                media: Media;
                mediaId: number;
                notes: string;
                priority: number;
                private: boolean;
                progress: number;
                progressVolumes: number;
                repeat: number;
                score: number;
                startedAt: FuzzyDate;
                status: string;
                updatedAt: number;
                userId: number;
            }[];
            isCustomList: boolean;
            isSplitCompletedList: boolean;
            name: string;
            status: string;
        }[];
    }
    Index
    hasNextChunk: boolean

    hasNextChunk is a boolean representing whether there is a next chunk in the media list collection.

    lists: {
        entries: {
            advancedScores: number[];
            completedAt: FuzzyDate;
            createdAt: number;
            customLists: boolean[];
            hiddenFromStatusLists: boolean;
            id: number;
            media: Media;
            mediaId: number;
            notes: string;
            priority: number;
            private: boolean;
            progress: number;
            progressVolumes: number;
            repeat: number;
            score: number;
            startedAt: FuzzyDate;
            status: string;
            updatedAt: number;
            userId: number;
        }[];
        isCustomList: boolean;
        isSplitCompletedList: boolean;
        name: string;
        status: string;
    }[]

    lists is an array of objects, each representing a list with entries, name, isCustomList, isSplitCompletedList, and status.

    Type Declaration

    • entries: {
          advancedScores: number[];
          completedAt: FuzzyDate;
          createdAt: number;
          customLists: boolean[];
          hiddenFromStatusLists: boolean;
          id: number;
          media: Media;
          mediaId: number;
          notes: string;
          priority: number;
          private: boolean;
          progress: number;
          progressVolumes: number;
          repeat: number;
          score: number;
          startedAt: FuzzyDate;
          status: string;
          updatedAt: number;
          userId: number;
      }[]

      entries is an array of objects, each representing a media list entry. Each entry includes the id, userId, mediaId, status, score, progress, progressVolumes, repeat, priority, private, notes, hiddenFromStatusLists, customLists, advancedScores, startedAt, completedAt, updatedAt, createdAt, and media.

    • isCustomList: boolean

      isCustomList is a boolean indicating whether the list is a custom list.

    • isSplitCompletedList: boolean

      isSplitCompletedList is a boolean indicating whether the list is a split completed list.

    • name: string

      name is a string representing the name of the list in the media list collection.

    • status: string

      status is a string representing the status of the list in the media list collection.