Followers

data class Followers(href: String?, total: Int?)

Information about a Spotify user's followers

Parameters

href

Will always be null, per the Spotify documentation, until the Web API is updated to support this.

total

Null or -1 if the user object does not contain followers, otherwise the amount of followers the user has

Constructors

Followers
Link copied to clipboard
common
fun Followers(href: String? = null, total: Int? = null)
Will always be null, per the Spotify documentation, until the Web API is updated to support this.

Properties

href
Link copied to clipboard
common
val href: String? = null
Will always be null, per the Spotify documentation, until the Web API is updated to support this.
total
Link copied to clipboard
common
val total: Int? = null
Null or -1 if the user object does not contain followers, otherwise the amount of followers the user has

Sources

common source
Link copied to clipboard