data class Episode
Detail about anime's episode.
<init> |
Detail about anime's episode. Episode(episodeId: Int? = null, title: String? = null, titleEnglish: String? = null, titleJapanese: String? = null, aired: Date? = null, filler: Boolean? = null, recap: Boolean? = null, videoUrl: String? = null, forumUrl: String? = null) |
aired |
Aired date of the episode. val aired: Date? |
episodeId |
ID associated with the anime. val episodeId: Int? |
filler |
Whether this episode is filler ep or not. val filler: Boolean? |
forumUrl |
Episode forum's MyAnimeList URL val forumUrl: String? |
recap |
Whether this episode is recap ep or not. val recap: Boolean? |
title |
Title of the episode. val title: String? |
titleEnglish |
Title of the episode in romanji. val titleEnglish: String? |
titleJapanese |
Title of the episode in Japanese. val titleJapanese: String? |
videoUrl |
Episode video's MyAnimeList URL val videoUrl: String? |