OBJECT

SetSessionStatusPayload

link GraphQL Schema definition

1type SetSessionStatusPayload {
2
3# The number of seconds your application should wait before sending another
4# setSessionStatus. If your application does
5# not call setSessionStatus again within roughly this duration, it will be assumed
6# to have terminated unexpectedly and
7# its session status for this user will expire.
8setAgainInSeconds: Int!
9
10# The modified user.
11user: User
12
13}