OBJECT

RadioAccount

Amazon Music user information for a Twitch user using Twitch Radio.

link GraphQL Schema definition

1type RadioAccount {
2
3# The Twitch user's ID as known in Amazon Music.
4customerID: ID!
5
6# The unique Amazon client device identifier for this user and service.
7deviceID: ID!
8
9# ISO 3166-1 alpha-2 country code territory of the user in Amazon Music.
10musicTerritory: String!
11
12# User token to authenticate with Amazon services
13amazonAccessToken: String!
14
15tokenExpiresAt: Time!
16
17}