MediaListEntry is an interface representing an entry in a media list. It includes the id and status each having their own properties.

interface MediaListEntry {
    id: number;
    status: string;
}

Properties

Properties

id: number

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

status: string

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