TraktSyncSeason

@Serializable
data class TraktSyncSeason(val ids: TraktItemIds, val rating: Int? = null, val watchedAt: Instant? = null, val collectedAt: Instant? = null, val ratedAt: Instant? = null, val episodes: List<TraktSyncEpisode> = emptyList()) : TraktSyncItem

Constructors

Link copied to clipboard
constructor(ids: TraktItemIds, rating: Int? = null, watchedAt: Instant? = null, collectedAt: Instant? = null, ratedAt: Instant? = null, episodes: List<TraktSyncEpisode> = emptyList())

Properties

Link copied to clipboard
@SerialName(value = "collected_at")
open override val collectedAt: Instant? = null
Link copied to clipboard
@SerialName(value = "episodes")
val episodes: List<TraktSyncEpisode>
Link copied to clipboard
@SerialName(value = "ids")
open override val ids: TraktItemIds
Link copied to clipboard
@SerialName(value = "rated_at")
open override val ratedAt: Instant? = null
Link copied to clipboard
@SerialName(value = "rating")
open override val rating: Int? = null
Link copied to clipboard
@SerialName(value = "watched_at")
open override val watchedAt: Instant? = null