ENUM

SquadStreamStatus

Describes the status of a squad stream.

link GraphQL Schema definition

1enum SquadStreamStatus {
2
3# The squad stream is live and is being broadcast to viewers.
4LIVE
5
6# The squad stream is being set up, and should not be shown to viewers.
7PENDING
8
9# The squad stream has ended.
10ENDED
11
12# The squad stream has an unknown status.
13UNKNOWN
14}