OBJECT

LWAToken

Caller should store all of these fields.

link GraphQL Schema definition

1type LWAToken {
2
3# Access token to pass in on subsequent requests.
4accessToken: String!
5
6# TTL in seconds, default is 3600.
7expiresIn: Int!
8
9# Should be stored, though generally shouldn't change.
10refreshToken: String!
11
12}