MediaListResponse is an interface representing the response from a media list query. It includes the id, user id, media id, status, score, progress, progress volumes, repeat, priority, private status, notes, hidden from status lists status, custom lists, advanced scores, started at date, completed at date, updated at timestamp, created at timestamp, media, and user.

interface MediaListResponse {
    advancedScores: any;
    completedAt: any;
    createdAt: number;
    customLists: any;
    hiddenFromStatusLists: boolean;
    id: number;
    media: Media;
    mediaId: number;
    notes: string;
    priority: number;
    private: boolean;
    progress: number;
    progressVolumes: number;
    repeat: number;
    score: number;
    startedAt: any;
    status: string;
    updatedAt: number;
    user: any;
    userId: number;
}

Properties

advancedScores: any

advancedScores is an array representing the advanced scores of the media list.

completedAt: any

completedAt is a date representing when the media list was completed.

createdAt: number

createdAt is a number representing the timestamp when the media list was created.

customLists: any

customLists is an array representing the custom lists of the media list.

hiddenFromStatusLists: boolean

hiddenFromStatusLists is a boolean representing whether the media list is hidden from status lists.

id: number

id is a number representing the id of the media list.

media: Media

media is an instance of Media representing the media associated with the media list.

mediaId: number

mediaId is a number representing the id of the media associated with the media list.

notes: string

notes is a string representing the notes of the media list.

priority: number

priority is a number representing the priority of the media list.

private: boolean

private is a boolean representing the privacy status of the media list.

progress: number

progress is a number representing the progress of the media list.

progressVolumes: number

progressVolumes is a number representing the progress volumes of the media list.

repeat: number

repeat is a number representing the repeat status of the media list.

score: number

score is a number representing the score of the media list.

startedAt: any

startedAt is a date representing when the media list started.

status: string

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

updatedAt: number

updatedAt is a number representing the timestamp when the media list was last updated.

user: any

user is an instance representing the user associated with the media list.

userId: number

userId is a number representing the id of the user associated with the media list.