OBJECT

TwitchAccount

The information related to a Twitch Account.

link GraphQL Schema definition

1type TwitchAccount {
2
3# The unique Twitch identifier.
4tuid: String!
5
6# A user-styled version of their login.
7displayName: String
8
9# URL of the user’s profile image.
10profileImageUrl: String
11
12# The current status of the Twitch account
13status: TwitchAccountStatus!
14
15}