data class AnimeTopEntity : MalEntity
<init> |
AnimeTopEntity(malId: Int, rank: Int? = null, url: String? = null, imageUrl: String? = null, title: String? = null, type: String? = null, episodes: Int? = null, startDate: String? = null, endDate: String? = null, members: Int? = null, score: Double? = null) |
endDate |
Anime end date. val endDate: String? |
episodes |
Total episode(s) of the anime. val episodes: Int? |
imageUrl |
Anime's MyAnimeList cover/image link. val imageUrl: String? |
malId |
ID associated with MyAnimeList. val malId: Int |
members |
Anime's members count on MyAnimeList. val members: Int? |
rank |
Current rank of the anime on list. val rank: Int? |
score |
Anime's score on MyAnimeList. val score: Double? |
startDate |
Anime start date. val startDate: String? |
title |
Title of the anime. val title: String? |
type |
Type of the anime. val type: String? |
url |
Anime's MyAnimeList link. val url: String? |