data class Person : Entity
<init> |
Person(malId: Int, url: String? = null, imageUrl: String? = null, websiteUrl: String? = null, name: String? = null, givenName: String? = null, familyName: String? = null, alternativeNames: List<String?>? = null, birthday: Date? = null, memberFavorites: Int? = null, about: String? = null, voiceActingRoles: List<VoiceActingRole?>? = null, animeStaffPosition: List<AnimeStaffPosition?>? = null, publishedManga: List<PublishedManga?>? = null) |
about |
Person's detail. val about: String? |
alternativeNames |
Person's alternative name(s). val alternativeNames: List<String?>? |
animeStaffPosition |
Person's anime staff position. val animeStaffPosition: List<AnimeStaffPosition?>? |
birthday |
Person's birthday. val birthday: Date? |
familyName |
Person's family name. val familyName: String? |
givenName |
Person's given name. val givenName: String? |
imageUrl |
Person's MyAnimeList cover/image link. val imageUrl: String? |
malId |
ID associated with MyAnimeList. val malId: Int |
memberFavorites |
Member favorites count. val memberFavorites: Int? |
name |
Person's name. val name: String? |
publishedManga |
Person's published manga. val publishedManga: List<PublishedManga?>? |
url |
Person's MyAnimeList link. val url: String? |
voiceActingRoles |
Person's voice acting roles. val voiceActingRoles: List<VoiceActingRole?>? |
websiteUrl |
Person's MyAnimeList website link. val websiteUrl: String? |