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