ChannelEditor

@Serializable
data class ChannelEditor(val userId: String, val userName: String, val createdAt: Instant)

Represents a channel editor from the Twitch Helix API.

See also

Constructors

Link copied to clipboard
constructor(userId: String, userName: String, createdAt: Instant)

Properties

Link copied to clipboard
@SerialName(value = "created_at")
val createdAt: Instant
Link copied to clipboard
@SerialName(value = "user_id")
val userId: String
Link copied to clipboard
@SerialName(value = "user_name")
val userName: String