PlaylistTrackInfo

data class PlaylistTrackInfo(href: String, total: Int)

A collection containing a link ( href ) to the Web API endpoint where full details of the playlist’s tracks can be retrieved, along with the total number of tracks in the playlist.

Parameters

href

link to the Web API endpoint where full details of the playlist’s tracks can be retrieved

total

the total number of tracks in the playlist.

Constructors

PlaylistTrackInfo
Link copied to clipboard
common
fun PlaylistTrackInfo(href: String, total: Int)
link to the Web API endpoint where full details of the playlist’s tracks can be retrieved

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, total: Int): PlaylistTrackInfo
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
link to the Web API endpoint where full details of the playlist’s tracks can be retrieved
total
Link copied to clipboard
common
val total: Int
the total number of tracks in the playlist.

Sources

(source)
Link copied to clipboard