data class UserAnimeStats
User's anime statistic.
<init> |
User's anime statistic. UserAnimeStats(daysWatched: Double? = null, meanScore: Double? = null, watching: Int? = null, completed: Int? = null, onHold: Int? = null, dropped: Int? = null, planToWatch: Int? = null, totalEntries: Int? = null, rewatched: Int? = null, episodesWatched: Int? = null) |
completed |
User's amount of anime that completed. val completed: Int? |
daysWatched |
Total amount of days user has been watching anime. val daysWatched: Double? |
dropped |
User's amount of anime that dropped. val dropped: Int? |
episodesWatched |
User's amount of watched episodes. val episodesWatched: Int? |
meanScore |
User's mean score for anime. val meanScore: Double? |
onHold |
User's amount of anime that currently on hold. val onHold: Int? |
planToWatch |
User's amount of anime that currently added in plan-to-watch. val planToWatch: Int? |
rewatched |
User's amount of anime that rewatched. val rewatched: Int? |
totalEntries |
Total number of user's anime entries. val totalEntries: Int? |
watching |
User's amount of anime that currently watching. val watching: Int? |