Chatter

@Serializable
data class Chatter(val userId: String, val userLogin: String, val userName: String)

Represents a user in a broadcaster's chat.

See also

Constructors

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

Properties

Link copied to clipboard
@SerialName(value = "user_id")
val userId: String

the ID of a user that's connected to the broadcaster's chat room.

Link copied to clipboard
@SerialName(value = "user_login")
val userLogin: String

the user's login name.

Link copied to clipboard
@SerialName(value = "user_name")
val userName: String

the user's display name.