artistName
The name of the artist to search for.
Declaration
var artistName: 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 artist. For example, “Play the band requestedArtistName”.
{
mediaName: requestedArtistName
mediaType: artist
}