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.

Functions

component1
Link copied to clipboard
common
operator fun component1(): String?
component2
Link copied to clipboard
common
operator fun component2(): Int?
copy
Link copied to clipboard
common
fun copy(href: String? = null, total: Int? = null): Followers
equals
Link copied to clipboard
common
open operator override fun equals(other: Any?): Boolean
hashCode
Link copied to clipboard
common
open override fun hashCode(): Int
toString
Link copied to clipboard
common
open override fun toString(): String

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

(source)
Link copied to clipboard