BlockedTerm

@Serializable
data class BlockedTerm(val broadcasterId: String, val moderatorId: String, val id: String, val text: String, val createdAt: Instant, val updatedAt: Instant, val expiresAt: Instant? = null)

Represents a blocked term from the Twitch Helix API.

See also

Constructors

Link copied to clipboard
constructor(broadcasterId: String, moderatorId: String, id: String, text: String, createdAt: Instant, updatedAt: Instant, expiresAt: Instant? = null)

Properties

Link copied to clipboard
@SerialName(value = "broadcaster_id")
val broadcasterId: String
Link copied to clipboard
@SerialName(value = "created_at")
val createdAt: Instant
Link copied to clipboard
@SerialName(value = "expires_at")
val expiresAt: Instant?
Link copied to clipboard
val id: String
Link copied to clipboard
@SerialName(value = "moderator_id")
val moderatorId: String
Link copied to clipboard
Link copied to clipboard
@SerialName(value = "updated_at")
val updatedAt: Instant