SimpleLocalArtist

data class SimpleLocalArtist(name: String, type: String)

Local artist object (goes with LocalTrack) representing an artist on a local track

Parameters

name

The name of the artist

type

The object type: "artist"

Constructors

SimpleLocalArtist
Link copied to clipboard
common
fun SimpleLocalArtist(name: String, type: String)
The name of the artist

Functions

component1
Link copied to clipboard
common
operator fun component1(): String
component2
Link copied to clipboard
common
operator fun component2(): String
copy
Link copied to clipboard
common
fun copy(name: String, type: String): SimpleLocalArtist
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

name
Link copied to clipboard
common
val name: String
The name of the artist
type
Link copied to clipboard
common
val type: String
The object type: "artist"

Sources

(source)
Link copied to clipboard