// The total number of users that follow this broadcaster.
// As someone pages through the list, the number of users may change as users follow or unfollow the broadcaster.
Totalint`json:"total"`
}
typeChannelFollowerstruct{
// An ID that uniquely identifies the user that’s following the broadcaster.
UserIDstring`json:"user_id"`
// The user’s login name.
UserLoginstring`json:"user_login"`
// The user’s display name.
UserNamestring`json:"user_name"`
// The UTC timestamp when the user started following the broadcaster.
FollowedAttime.Time`json:"followed_at"`
}
// Gets a list of users that follow the specified broadcaster. You can also use this endpoint to see whether a specific user follows the broadcaster.
//
// - Requires a user access token that includes the moderator:read:followers scope.
//
// - The ID in the broadcaster_id query parameter must match the user ID in the access token or the user ID in the access token must be a moderator for the specified broadcaster.
//
// This endpoint will return specific follower information only if both of the above are true.
// If a scope is not provided or the user isn’t the broadcaster or a moderator for the specified channel,
// only the total follower count will be included in the response.