data class Review : MalEntity
Review detail of the anime.
<init> |
Review detail of the anime. Review(malId: Int, url: String? = null, helpfulCount: Int? = null, date: Date? = null, reviewer: Reviewer? = null, content: String? = null) |
content |
Review's content. val content: String? |
date |
Posted date. val date: Date? |
helpfulCount |
Numbers of user that mark this review as helpful. val helpfulCount: Int? |
malId |
ID associated with MyAnimeList. val malId: Int |
reviewer |
Review's reviewer. val reviewer: Reviewer? |
url |
Review's URL on MyAnimeList. val url: String? |