data class MangaSearchSubEntity : MalEntity
<init> |
MangaSearchSubEntity(malId: Int, url: String? = null, imageUrl: String? = null, title: String? = null, synopsis: String? = null, type: MangaType? = null, score: Double? = null, chapters: Int? = null, volumes: Int? = null, members: Int? = null, publishing: Boolean? = null, startDate: Date? = null, endDate: Date? = null) |
chapters |
Total chapter(s) of the manga. val chapters: Int? |
endDate |
Manga finished publishing date. val endDate: Date? |
imageUrl |
Manga's MyAnimeList cover/image link. val imageUrl: String? |
malId |
ID associated with MyAnimeList. val malId: Int |
members |
Manga's members count on MyAnimeList. val members: Int? |
publishing |
Whether the manga is currently publishing or not. val publishing: Boolean? |
score |
Score at MyAnimeList. Formatted up to 2 decimal places. val score: Double? |
startDate |
Manga publishing date. val startDate: Date? |
synopsis |
Synopsis of the manga. val synopsis: String? |
title |
Title of the manga. val title: String? |
type |
Type of the manga. val type: MangaType? |
url |
Manga's MyAnimeList link. val url: String? |
volumes |
Total volume(s) of the manga. val volumes: Int? |