data class AnimeSearchSubEntity : MalEntity
<init> |
AnimeSearchSubEntity(malId: Int, url: String? = null, imageUrl: String? = null, title: String? = null, synopsis: String? = null, type: AnimeType? = null, score: Double? = null, episodes: Int? = null, members: Int? = null, airing: Boolean? = null, startDate: Date? = null, endDate: Date? = null, rated: String? = null) |
airing |
Whether the anime is currently airing or not. val airing: Boolean? |
endDate |
Anime finished airing date. val endDate: Date? |
episodes |
Total episode(s) of the anime. val episodes: Int? |
imageUrl |
Anime's MyAnimeList cover/image link. val imageUrl: String? |
malId |
ID associated with MyAnimeList. val malId: Int |
members |
Anime's members count on MyAnimeList. val members: Int? |
rated |
Rating of the anime (PG, G, Rx, etc.). val rated: String? |
score |
Score at MyAnimeList. Formatted up to 2 decimal places. val score: Double? |
startDate |
Anime airing date. val startDate: Date? |
synopsis |
Synopsis of the anime. val synopsis: String? |
title |
Title of the anime. val title: String? |
type |
Type of the anime. val type: AnimeType? |
url |
Anime's MyAnimeList link. val url: String? |