OBJECT
RadioTrack
A Twitch Radio track.
link GraphQL Schema definition
1 type RadioTrack { 2 3 # The track album. 4 : RadioAlbum! 5 6 # The track artists. 7 : [RadioArtist!]! 8 9 # The duration of the track in seconds. 10 : Int! 11 12 # Track's Genre. 13 : String! 14 15 # The track's unique id (an Amazon Standard Identification Number). 16 : ID! 17 18 # Industry standard track's unique id. 19 : String! 20 21 # The title of the track. 22 : String! 23 24 }