OBJECT

RadioTrack

A Twitch Radio track.

link GraphQL Schema definition

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