OBJECT

AuthenticatedSession

Authenticated Twitch session.

link GraphQL Schema definition

1type AuthenticatedSession {
2
3# ID of the client the user authenticated from.
4clientID: ID!
5
6# Creation date of the session.
7createdAt: Time
8
9# Date of invalidation of the session.
10# Can be null if the session hasn't been deleted.
11deletedAt: Time
12
13# Geolocation during authentication, determined by IP.
14location: String
15
16# User agent used during authentication.
17userAgent: String
18
19# Twitch User ID.
20userID: ID!
21
22}