SavedAlbum

data class SavedAlbum(addedAt: String, album: Album)

Represents an album saved in a user's library

Parameters

addedAt

The date and time the album was saved.

album

Information about the album.

Constructors

SavedAlbum
Link copied to clipboard
common
fun SavedAlbum(addedAt: String, album: Album)
The date and time the album was saved.

Functions

component1
Link copied to clipboard
common
operator fun component1(): String
component2
Link copied to clipboard
common
operator fun component2(): Album
copy
Link copied to clipboard
common
fun copy(addedAt: String, album: Album): SavedAlbum
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

addedAt
Link copied to clipboard
common
val addedAt: String
The date and time the album was saved.
album
Link copied to clipboard
common
val album: Album
Information about the album.

Sources

(source)
Link copied to clipboard