OBJECT
RadioStation
A Twitch Radio station.
link GraphQL Schema definition
1 type RadioStation { 2 3 # The station's unique id (an Amazon Standard Identification Number). 4 : ID! 5 6 # URL to the station's main image. 7 : String! 8 9 # Is the station featured. 10 : Boolean! 11 12 # Page token to be passed back to the Client Gateway when requesting additional 13 # tracks. 14 : String 15 16 # The station's title. 17 : String! 18 19 # List of tracks in the station. 20 : [RadioTrack!] 21 22 }