OBJECT

RadioPlaylist

A Twitch Radio playlist.

link GraphQL Schema definition

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