OBJECT

CloudBroadcast

Represents a cloud broadcast and its state.

link GraphQL Schema definition

1type CloudBroadcast {
2
3# The id of the cloud broadcast.
4id: ID!
5
6# The status of a cloud broadcast.
7state: CloudBroadcastState!
8
9# The ingest URI for the broadcast.
10# This is available if the broadcast is in an online state; otherwise null.
11uri: String
12
13}