TraktComment

@Serializable
data class TraktComment(val id: Int, val createdAt: Instant? = null, val comment: String, val spoiler: Boolean, val likes: Int? = null, val replies: Int? = null, val user: TraktUser?, val userStats: TraktUserStats? = null, val movie: TraktMovie? = null, val show: TraktShow? = null, val episode: TraktEpisode? = null, val season: TraktSeason? = null)

Constructors

Link copied to clipboard
constructor(id: Int, createdAt: Instant? = null, comment: String, spoiler: Boolean, likes: Int? = null, replies: Int? = null, user: TraktUser?, userStats: TraktUserStats? = null, movie: TraktMovie? = null, show: TraktShow? = null, episode: TraktEpisode? = null, season: TraktSeason? = null)

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val createdAt: Instant? = null
Link copied to clipboard
Link copied to clipboard
val episode: TraktEpisode? = null
Link copied to clipboard
val id: Int
Link copied to clipboard
Link copied to clipboard
val likes: Int? = null
Link copied to clipboard
val movie: TraktMovie? = null
Link copied to clipboard
val replies: Int? = null
Link copied to clipboard
val season: TraktSeason? = null
Link copied to clipboard
val show: TraktShow? = null
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard