MediaTrendResponse is an interface representing the response from a media trend query. It includes the media's id, date, trending status, average score, popularity, in progress status, releasing status, episode number, and media of type Media.

interface MediaTrendResponse {
    averageScore: number;
    date: number;
    episode: number;
    inProgress: number;
    media: Media;
    mediaId: number;
    popularity: number;
    releasing: boolean;
    trending: number;
}

Properties

averageScore: number

averageScore is a number representing the average score of the media.

date: number

date is a number representing the date of the media trend.

episode: number

episode is a number representing the episode number of the media.

inProgress: number

inProgress is a number representing the in progress status of the media.

media: Media

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

mediaId: number

mediaId is a number representing the id of the media.

popularity: number

popularity is a number representing the popularity of the media.

releasing: boolean

releasing is a boolean representing the releasing status of the media.

trending: number

trending is a number representing the trending status of the media.