OBJECT

RadioCurrentlyPlaying

Content currently playing in the client for a user.

link GraphQL Schema definition

1type RadioCurrentlyPlaying {
2
3# The radio content promotion json data.
4contentPromotions: [RadioContentPromotion!]
5
6# Whether the track is currently playing or not.
7isCurrentlyPlaying: Boolean!
8
9# The Track Details of the currently playing track.
10track: RadioTrack
11
12}