JikanKt / moe.ganen.jikankt.models.base.types / AnimeSubEntity

AnimeSubEntity

data class AnimeSubEntity : Entity, MalEntity

Anime sub entity data class.

Constructors

<init>

Anime sub entity data class.

AnimeSubEntity(malId: Int, url: String? = null, imageUrl: String? = null, title: String? = null, synopsis: String? = null, type: String? = null, airingStart: Date? = null, episodes: Int? = null, members: Int? = null, genres: List<MalSubEntity?>? = null, source: String? = null, producers: List<MalSubEntity?>? = null, score: Double? = null, licensors: List<String?>? = null, r18: Boolean? = null, kids: Boolean? = null, continuing: Boolean? = null)

Properties

airingStart

Anime airing date.

val airingStart: Date?

continuing

Whether this anime is continuing or not

val continuing: Boolean?

episodes

Total episode(s) of the anime.

val episodes: Int?

genres

Anime's genre(s).

val genres: List<MalSubEntity?>?

imageUrl

Anime's MyAnimeList cover/image link.

val imageUrl: String?

kids

Whether this anime is kids or not.

val kids: Boolean?

licensors

List of licensors of the anime.

val licensors: List<String?>?

malId

ID associated with MyAnimeList.

val malId: Int

members

Anime's members count on MyAnimeList.

val members: Int?

producers

List of producers of the anime.

val producers: List<MalSubEntity?>?

r18

Whether this anime is R18 or not.

val r18: Boolean?

score

Score at MyAnimeList. Formatted up to 2 decimal places.

val score: Double?

source

Source of the anime.

val source: String?

synopsis

Synopsis of the anime.

val synopsis: 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?