JikanKt / moe.ganen.jikankt.models.manga / Manga

Manga

data class Manga : Entity, MalEntity

Manga data class

Constructors

<init>

Manga data class

Manga(malId: Int, url: String? = null, title: String? = null, titleEnglish: String? = null, titleSynonyms: List<String>? = null, titleJapanese: String? = null, status: String? = null, imageUrl: String? = null, type: String? = null, volumes: String? = null, chapters: String? = null, publishing: Boolean? = null, published: TimeInterval? = null, rank: Int? = null, score: Double? = null, scoredBy: Int? = null, popularity: Int? = null, members: Int? = null, favorites: Int? = null, synopsis: String? = null, background: String? = null, related: RelatedManga? = null, genres: List<MalSubEntity?>? = null, authors: List<MalSubEntity?>? = null, serializations: List<MalSubEntity?>? = null)

Properties

authors

List of authors of this manga.

val authors: List<MalSubEntity?>?

background

Background info of the manga.

val background: String?

chapters

Total chapter(s) of the anime.

val chapters: String?

favorites

Manga's favorites count on MyAnimeList.

val favorites: Int?

genres

List of genre of this manga.

val genres: List<MalSubEntity?>?

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?

popularity

Manga's popularity rank on MyAnimeList.

val popularity: Int?

published

Interval of publishing time in ISO8601 format.

val published: TimeInterval?

publishing

Whether the anime is currently publishing or not.

val publishing: Boolean?

rank

Manga's score rank on MyAnimeList.

val rank: Int?

related

Lists of related items of the anime.

val related: RelatedManga?

score

Score at MyAnimeList. Formatted up to 2 decimal places.

val score: Double?

scoredBy

Number of people/users that scored the manga.

val scoredBy: Int?

serializations

List of serializations of this manga.

val serializations: List<MalSubEntity?>?

status

Status of the anime (e.g "Publishing", etc).

val status: String?

synopsis

Synopsis of the manga.

val synopsis: String?

title

Title of the manga.

val title: String?

titleEnglish

Title of the manga in English.

val titleEnglish: String?

titleJapanese

Title of the manga in Japanese.

val titleJapanese: String?

titleSynonyms

List of manga's synonyms.

val titleSynonyms: List<String>?

type

Type of the manga.

val type: String?

url

Manga's MyAnimeList link.

val url: String?

volumes

Total volume(s) of the anime.

val volumes: String?