KKAlbumInfo
public struct KKAlbumInfo : Codable
A struct that represents an album.
-
The ID of the album.
Declaration
Swift
public internal(set) var ID: String -
The name of the album.
Declaration
Swift
public internal(set) var name: String -
The URL of the webpage of KKBOX for the album.
Declaration
Swift
public internal(set) var url: URL? -
The artist of the album.
Declaration
Swift
public internal(set) var artist: KKArtistInfo? -
The cover images for the album.
Declaration
Swift
public internal(set) var images: [KKImageInfo] -
When was the album released.
Declaration
Swift
public internal(set) var releaseDate: String? -
If the album explicit or not.
Declaration
Swift
public internal(set) var explicitness: Bool -
The territories where the album is available at.
Declaration
Swift
public internal(set) var territoriesThatAvailableAt: [KKTerritory]
KKAlbumInfo Structure Reference