ENUM

CloudBroadcastState

Represents the status of a cloud broadcast.

link GraphQL Schema definition

1enum CloudBroadcastState {
2
3# Broadcast is offline and needs to be started.
4OFFLINE
5
6# Broadcast is pending and currently starting.
7PENDING
8
9# Broadcast is online and ready.
10ONLINE
11
12# The broadcast status is unknown.
13UNKNOWN
14}