OBJECT

StreamKeyError

StreamKeyError represents the error code and its translated error message response that explains why the broadcaster can't start a stream.

link GraphQL Schema definition

1type StreamKeyError {
2
3# code is the error code for why the broadcaster is not allow to broadcast.
4code: String!
5
6# Link is the url link that is associated from the translated message.
7links: [String!]!
8
9# message is the translated message for why the broadcaster is not allow to
10# broadcast.
11message: String!
12
13}