KKPlaylistInfo

public struct KKPlaylistInfo : Codable

A struct that represents a playlist.

  • ID

    ID of the playlist.

    Declaration

    Swift

    public internal(set) var ID: String
  • Title of the playlist.

    Declaration

    Swift

    public internal(set) var title: String
  • url

    URL of the webpage of KKBOX for the playlist.

    Declaration

    Swift

    public internal(set) var url: URL?
  • Cover images for the playlist.

    Declaration

    Swift

    public internal(set) var images: [KKImageInfo]
  • Description of the playlist.

    Declaration

    Swift

    public internal(set) var playlistDescription: String
  • Owner of the playlist.

    Declaration

    Swift

    public internal(set) var owner: KKUserInfo
  • When is the playlist updated

    Declaration

    Swift

    public internal(set) var lastUpdateDate: Date
  • Tracks contained in the playlist.

    Declaration

    Swift

    public internal(set) var tracks: KKTrackList?