SiteStatisticsResponse is an interface representing the response from a site statistics query. It includes users, anime, manga, characters, staff, studios, and reviews of type SiteTrendConnection.

interface SiteStatisticsResponse {
    anime: SiteTrendConnection;
    characters: SiteTrendConnection;
    manga: SiteTrendConnection;
    reviews: SiteTrendConnection;
    staff: SiteTrendConnection;
    studios: SiteTrendConnection;
    users: SiteTrendConnection;
}

Properties

anime is an instance of SiteTrendConnection representing the anime statistics.

characters is an instance of SiteTrendConnection representing the characters' statistics.

manga is an instance of SiteTrendConnection representing the manga statistics.

reviews is an instance of SiteTrendConnection representing the reviews' statistics.

staff is an instance of SiteTrendConnection representing the staff statistics.

studios is an instance of SiteTrendConnection representing the studios' statistics.

users is an instance of SiteTrendConnection representing the users' statistics.