data class CharacterTopEntity : MalEntity
<init> |
CharacterTopEntity(malId: Int, rank: Int? = null, url: String? = null, imageUrl: String? = null, name: String? = null, nameKanji: String? = null, favorites: Int? = null, score: Double? = null, animeography: List<MalSubEntity?>? = null, mangaography: List<MalSubEntity?>? = null) |
animeography |
Character's animeography. val animeography: List<MalSubEntity?>? |
favorites |
Character's favorites count on MyAnimeList. val favorites: Int? |
imageUrl |
Character's MyAnimeList cover/image link. val imageUrl: String? |
malId |
ID associated with MyAnimeList. val malId: Int |
mangaography |
Character's mangaography. val mangaography: List<MalSubEntity?>? |
name |
Name of the character. val name: String? |
nameKanji |
Name of the character. val nameKanji: String? |
rank |
Current rank of the character on list. val rank: Int? |
score |
Character's score on MyAnimeList. val score: Double? |
url |
Character's MyAnimeList link. val url: String? |