Attributes
public struct Attributes : Codable
A root object that stores information about a single song, such as the song’s title, artist, and video url.
-
The Amazon Music id of the song.
Declaration
Swift
public let amazonID: String?
-
The Apple Music id of the song.
Declaration
Swift
public let amID: Int?
-
The Deezer id of the song.
Declaration
Swift
public let deezerID: Int?
-
The MyAnimeList id of the song.
Declaration
Swift
public let malID: Int?
-
The Spotify id of the song.
Declaration
Swift
public let spotifyID: String?
-
The YoutTube id of the song.
Declaration
Swift
public let youtubeID: String?
-
The link to a artwork image of the song.
Declaration
Swift
public let artwork: Media?
-
The original title of the song.
Declaration
Swift
public let originalTitle: String
-
The localized title of the song.
Declaration
Swift
public let title: String?
-
The original lyrics of the song.
Declaration
Swift
public let originalLyrics: String?
-
The localized lyrics of the song.
Declaration
Swift
public let lyrics: String?
-
The artist of the song.
Declaration
Swift
public let artist: String
-
The stats of the song.
Declaration
Swift
public let stats: MediaStat?
-
The copyright text of the song.
Declaration
Swift
public let copyright: String?
-
The library attributes of the song.
Declaration
Swift
public var library: LibraryAttributes?