OBJECT

RadioArtist

A Twitch Radio artist.

link GraphQL Schema definition

1type RadioArtist {
2
3# The creator channel.
4channel: Channel
5
6# The creator channel id.
7creatorChannelID: ID
8
9# The artist's unique id (an Amazon Standard Identification Number).
10id: ID!
11
12# The artist name.
13name: String!
14
15}