OBJECT

RadioStation

A Twitch Radio station.

link GraphQL Schema definition

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