UserUpdate

data class UserUpdate(val subscriptionType: String, val messageId: String, val timestamp: Instant, val userId: String, val userLogin: String, val userName: String, val email: String?, val emailVerified: Boolean, val description: String) : TwitchEvent

Twitch EventSub: user.update

Constructors

Link copied to clipboard
constructor(subscriptionType: String, messageId: String, timestamp: Instant, userId: String, userLogin: String, userName: String, email: String?, emailVerified: Boolean, description: String)

Properties

Link copied to clipboard

the user's profile description.

Link copied to clipboard

the user's email address; null if not authorized to view.

Link copied to clipboard

whether the user's email has been verified.

Link copied to clipboard
open override val messageId: String

Unique ID for this EventSub message.

Link copied to clipboard
open override val subscriptionType: String

The EventSub subscription type string (e.g. channel.follow).

Link copied to clipboard
open override val timestamp: Instant

The Instant when the EventSub notification was sent, parsed from ISO-8601.

Link copied to clipboard

the user ID of the updated user.

Link copied to clipboard

the login of the updated user.

Link copied to clipboard

the display name of the updated user.