OBJECT

RadioRecentlyPlayed

Content recently played in the client.

link GraphQL Schema definition

1type RadioRecentlyPlayed {
2
3# The type of content the ID maps to.
4contentType: RadioRecentlyPlayedType!
5
6# The id of the recently played item.
7id: ID!
8
9# Recently played playlist metadata.
10playlist: RadioPlaylist
11
12# Recently played station metadata.
13station: RadioStation
14
15# The time this ID was last recently played by the current user.
16updatedAt: Time!
17
18}