data class PeopleTopEntity : MalEntity
<init> |
PeopleTopEntity(malId: Int, rank: Int? = null, url: String? = null, imageUrl: String? = null, name: String? = null, nameKanji: String? = null, favorites: Int? = null, birthday: Date? = null) |
birthday |
Person's birthday val birthday: Date? |
favorites |
Person's favorites count on MyAnimeList. val favorites: Int? |
imageUrl |
Person's MyAnimeList cover/image link. val imageUrl: String? |
malId |
ID associated with MyAnimeList. val malId: Int |
name |
Name of the person. val name: String? |
nameKanji |
Name of the person. val nameKanji: String? |
rank |
Current rank of the person on list. val rank: Int? |
url |
Person's MyAnimeList link. val url: String? |