OBJECT

CloudBroadcastProviderCapabilities

Capabilities of a cloud broadcast provider.

link GraphQL Schema definition

1type CloudBroadcastProviderCapabilities {
2
3# The maximum supported broadcast framerate for the provider, if available.
4framerate: Int
5
6# The maximum supported broadcast height for the provider, if available.
7height: Int
8
9# The ID of the provider associated with the capabilities.
10id: ID!
11
12# Whether or not if the broadcaster can send broadcasts to the service.
13isAvailable: Boolean!
14
15# The maximum supported broadcast width for the provider, if available.
16width: Int
17
18}