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
@SerialName(value = "comment")
val comment: String
Link copied to clipboard
Link copied to clipboard
@SerialName(value = "created_at")
val createdAt: Instant? = null
Link copied to clipboard
Link copied to clipboard
@SerialName(value = "episode")
val episode: TraktEpisode? = null
Link copied to clipboard
@SerialName(value = "id")
val id: Int
Link copied to clipboard
Link copied to clipboard
@SerialName(value = "likes")
val likes: Int? = null
Link copied to clipboard
@SerialName(value = "movie")
val movie: TraktMovie? = null
Link copied to clipboard
@SerialName(value = "replies")
val replies: Int? = null
Link copied to clipboard
@SerialName(value = "season")
val season: TraktSeason? = null
Link copied to clipboard
@SerialName(value = "show")
val show: TraktShow? = null
Link copied to clipboard
@SerialName(value = "spoiler")
val spoiler: Boolean
Link copied to clipboard
@SerialName(value = "user")
val user: TraktUser?
Link copied to clipboard
@SerialName(value = "user_stats")
val userStats: TraktUserStats? = null