data class Club : Entity, MalEntity
<init> |
Club(malId: Int, url: String? = null, imageUrl: String? = null, title: String? = null, membersCount: Int? = null, picturesCount: Int? = null, category: String? = null, create: Date? = null, type: String? = null, staff: List<MalSubEntity?>? = null, animeRelations: List<MalSubEntity?>? = null, mangaRelations: List<MalSubEntity?>? = null, characterRelations: List<MalSubEntity?>? = null) |
animeRelations |
List of anime related to the club. val animeRelations: List<MalSubEntity?>? |
category |
Club's category. val category: String? |
characterRelations |
List of character related to the club. val characterRelations: List<MalSubEntity?>? |
create |
Created date. val create: Date? |
imageUrl |
Club's MyAnimeList cover/image link. val imageUrl: String? |
malId |
ID associated with MyAnimeList. val malId: Int |
mangaRelations |
List of manga related to the club. val mangaRelations: List<MalSubEntity?>? |
membersCount |
Member count. val membersCount: Int? |
picturesCount |
Picture count. val picturesCount: Int? |
staff |
Club staff. val staff: List<MalSubEntity?>? |
title |
Club's title/name. val title: String? |
type |
Club's type (public, private, etc). val type: String? |
url |
Club's MyAnimeList link. val url: String? |