MediaStatistics is an interface representing the statistics of a media. It includes various properties related to the statistics of the media.

interface MediaStatistics {
    chaptersRead?: number;
    count: number;
    countries: Stat[];
    episodesWatched?: number;
    formats: Stat[];
    genres: Stat[];
    lengths: Stat[];
    meanScore: number;
    minutesWatched?: number;
    releaseYears: Stat[];
    scores: Stat[];
    staff: Stat[];
    standardDeviation: number;
    startYears: Stat[];
    statuses: Stat[];
    studios: Stat[];
    tags: Stat[];
    voiceActors?: Stat[];
    volumesRead?: number;
}

Properties

chaptersRead?: number

chaptersRead is an optional number representing the chapters read of the media.

count: number

count is a number representing the count of the media.

countries: Stat[]

countries is an array of Stat objects representing the countries of the media.

episodesWatched?: number

episodesWatched is an optional number representing the episodes watched of the media.

formats: Stat[]

formats is an array of Stat objects representing the formats of the media.

genres: Stat[]

genres is an array of Stat objects representing the genres of the media.

lengths: Stat[]

lengths is an array of Stat objects representing the lengths of the media.

meanScore: number

meanScore is a number representing the mean score of the media.

minutesWatched?: number

minutesWatched is an optional number representing the minutes watched of the media.

releaseYears: Stat[]

releaseYears is an array of Stat objects representing the release years of the media.

scores: Stat[]

scores is an array of Stat objects representing the scores of the media.

staff: Stat[]

staff is an array of Stat objects representing the staff of the media.

standardDeviation: number

standardDeviation is a number representing the standard deviation of the media.

startYears: Stat[]

startYears is an array of Stat objects representing the start years of the media.

statuses: Stat[]

statuses is an array of Stat objects representing the statuses of the media.

studios: Stat[]

studios is an array of Stat objects representing the studios of the media.

tags: Stat[]

tags is an array of Stat objects representing the tags of the media.

voiceActors?: Stat[]

voiceActors is an optional array of Stat objects representing the voice actors of the media.

volumesRead?: number

volumesRead is an optional number representing the volumes read of the media.