albumName
The name of the album to search for.
Declaration
var albumName: String? { get }Discussion
Only use this property for combination queries in conjunction with the mediaName property. For example, “Play the song requestedSongName on the album requestedAlbumName by requestedArtistName”.
{
mediaName: requestedSongName
mediaType: song
albumName: requestedAlbumName
artistName: requestedArtistName
}Do not use this property when the user requests to play an album. For example, “Play the album requestedAlbumName”.
{
mediaName: requestedAlbumName
mediaType: album
}