twitchkt
Toggle table of contents
common
Target filter
common
Switch theme
Search in API
Skip to content
twitchkt
helix
/
io.github.captnblubber.twitchkt.helix.model
/
BlockedTerm
Blocked
Term
@
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
Twitch API Reference - Get Blocked Terms
Members
Constructors
Blocked
Term
Link copied to clipboard
constructor
(
broadcasterId
:
String
,
moderatorId
:
String
,
id
:
String
,
text
:
String
,
createdAt
:
Instant
,
updatedAt
:
Instant
,
expiresAt
:
Instant
?
=
null
)
Properties
broadcaster
Id
Link copied to clipboard
@
SerialName
(
value
=
"broadcaster_id"
)
val
broadcasterId
:
String
created
At
Link copied to clipboard
@
SerialName
(
value
=
"created_at"
)
val
createdAt
:
Instant
expires
At
Link copied to clipboard
@
SerialName
(
value
=
"expires_at"
)
val
expiresAt
:
Instant
?
id
Link copied to clipboard
val
id
:
String
moderator
Id
Link copied to clipboard
@
SerialName
(
value
=
"moderator_id"
)
val
moderatorId
:
String
text
Link copied to clipboard
val
text
:
String
updated
At
Link copied to clipboard
@
SerialName
(
value
=
"updated_at"
)
val
updatedAt
:
Instant