MyListStatus

@Serializable
data class MyListStatus(val status: String? = null, val score: Int? = null, val numEpisodesWatched: Int? = null, val isRewatching: Boolean? = null, val updatedAt: String? = null)(source)

Constructors

Link copied to clipboard
constructor(status: String? = null, score: Int? = null, numEpisodesWatched: Int? = null, isRewatching: Boolean? = null, updatedAt: String? = null)

Properties

Link copied to clipboard
@SerialName(value = "is_rewatching")
val isRewatching: Boolean?
Link copied to clipboard
@SerialName(value = "num_episodes_watched")
val numEpisodesWatched: Int?
Link copied to clipboard
@SerialName(value = "score")
val score: Int?
Link copied to clipboard
@SerialName(value = "status")
val status: String?
Link copied to clipboard
@SerialName(value = "updated_at")
val updatedAt: String?