SaveMediaListEntryVariables is an interface representing the variables for the SaveMediaListEntryMutation. It includes optional id, media id, status, score, raw score, progress, progress volumes, repeat, priority, private status, notes, hidden from status lists status, custom lists, advanced scores, started at date, and completed at date.

interface SaveMediaListEntryVariables {
    advancedScores?: number[];
    completedAt?: FuzzyDateInput;
    customLists?: string[];
    hiddenFromStatusLists?: boolean;
    id?: number;
    mediaId: number;
    notes?: string;
    priority?: number;
    private?: boolean;
    progress?: number;
    progressVolumes?: number;
    repeat?: number;
    score?: number;
    scoreRaw?: number;
    startedAt?: FuzzyDateInput;
    status?: MediaListStatus;
}

Properties

advancedScores?: number[]

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

completedAt?: FuzzyDateInput

completedAt is a FuzzyDateInput representing when the media list entry was completed.

customLists?: string[]

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

hiddenFromStatusLists?: boolean

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

id?: number

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

mediaId: number

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

notes?: string

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

priority?: number

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

private?: boolean

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

progress?: number

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

progressVolumes?: number

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

repeat?: number

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

score?: number

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

scoreRaw?: number

scoreRaw is a number representing the raw score of the media list entry.

startedAt?: FuzzyDateInput

startedAt is a FuzzyDateInput representing when the media list entry started.

status is a MediaListStatus representing the status of the media list entry.