ENUM

BroadcastFormat

BroadcastFormat is type of ingest live sessions.

link GraphQL Schema definition

1enum BroadcastFormat {
2
3# Default live stream. Primary session for the backup session will be shown as
4# live.
5LIVE
6
7# Stream with intentional delays requested by the broadcaster.
8DELAY
9
10# Primary session which backup session was stitched back to.
11BACKUP_000
12
13# First backup session.
14BACKUP_001
15
16# Second backup session.
17BACKUP_002
18
19# Third backup session.
20BACKUP_003
21}