TraktUser

@Serializable
data class TraktUser(val userName: String? = null, val name: String? = null, val location: String? = null, val about: String? = null, val vip: Boolean = false, val joinedAt: Instant? = null, val vipEp: Boolean = false, val ids: TraktUserIds? = null, val vipOg: Boolean = false, val images: TraktUserImage? = null)

VIP: If a user is a regular VIP. VIP_EP: If a user is an execute producer.

Constructors

Link copied to clipboard
constructor(userName: String? = null, name: String? = null, location: String? = null, about: String? = null, vip: Boolean = false, joinedAt: Instant? = null, vipEp: Boolean = false, ids: TraktUserIds? = null, vipOg: Boolean = false, images: TraktUserImage? = null)

Properties

Link copied to clipboard
@SerialName(value = "about")
val about: String? = null
Link copied to clipboard
@SerialName(value = "ids")
val ids: TraktUserIds? = null
Link copied to clipboard
Link copied to clipboard
@SerialName(value = "images")
val images: TraktUserImage? = null
Link copied to clipboard
@SerialName(value = "joined_at")
val joinedAt: Instant? = null
Link copied to clipboard
@SerialName(value = "location")
val location: String? = null
Link copied to clipboard
@SerialName(value = "name")
val name: String? = null
Link copied to clipboard
Link copied to clipboard
@SerialName(value = "username")
val userName: String? = null
Link copied to clipboard
@SerialName(value = "vip")
val vip: Boolean = false
Link copied to clipboard
@SerialName(value = "vip_ep")
val vipEp: Boolean = false
Link copied to clipboard
@SerialName(value = "vip_og")
val vipOg: Boolean = false