Follower

@Serializable
data class Follower(val userId: String, val userLogin: String, val userName: String, val followedAt: Instant)

Twitch API: Get Channel Followers

Constructors

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

Properties

Link copied to clipboard
@SerialName(value = "followed_at")
val followedAt: Instant

when the user started following the broadcaster.

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

an ID that uniquely identifies the user that's following the broadcaster.

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.