OBJECT

StreamSession

The start and end time of a stream session for a user.

link GraphQL Schema definition

1type StreamSession {
2
3# The associated archive of the stream.
4archiveVideo: Video
5
6# The end time for the stream session.
7endedAt: Time!
8
9# The start time for the stream session.
10startedAt: Time!
11
12}