RecommendationResponse

data class RecommendationResponse(seeds: List<RecommendationSeed>, tracks: List<Track>)

Parameters

seeds

An array of recommendation seed objects.

tracks

An array of track object (simplified) ordered according to the parameters supplied.

Constructors

RecommendationResponse
Link copied to clipboard
common
fun RecommendationResponse(seeds: List<RecommendationSeed>, tracks: List<Track>)
An array of recommendation seed objects.

Functions

component1
Link copied to clipboard
common
operator fun component1(): List<RecommendationSeed>
component2
Link copied to clipboard
common
operator fun component2(): List<Track>
copy
Link copied to clipboard
common
fun copy(seeds: List<RecommendationSeed>, tracks: List<Track>): RecommendationResponse
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

seeds
Link copied to clipboard
common
val seeds: List<RecommendationSeed>
An array of recommendation seed objects.
tracks
Link copied to clipboard
common
val tracks: List<Track>
An array of track object (simplified) ordered according to the parameters supplied.

Sources

(source)
Link copied to clipboard