OBJECT
RadioPlaylist
A Twitch Radio playlist.
link GraphQL Schema definition
1 type RadioPlaylist { 2 3 # Curator of the playlist. 4 : String! 5 6 # Playlist's Description. 7 : String! 8 9 # The playlist's unique id (an Amazon Standard Identification Number). 10 : ID! 11 12 # URL to the playlist's main image. 13 : String! 14 15 # Is the playlist featured. 16 : Boolean! 17 18 # The playlist's title. 19 : String! 20 21 # List of tracks in the playlist. 22 : [RadioTrack!] 23 24 }