OBJECT

AdSession

AdSession is the response object from an Ad Request.

link GraphQL Schema definition

1type AdSession {
2
3# id is the id of the ad.
4id: ID!
5
6# lengthSeconds is the length of the ad being requested in seconds.
7lengthSeconds: Int!
8
9# retryAfterSeconds is the amount of time in seconds remaining for a user to run
10# another ad.
11retryAfterSeconds: Int!
12
13}