ENUM

UpdateBroadcastSettingsErrorCode

Possible error codes returned from updating broadcast settings.

link GraphQL Schema definition

1enum UpdateBroadcastSettingsErrorCode {
2
3# User is not authorized to update broadcast settings for this channel.
4AUTH_FAILURE
5
6# Too many attempts to update broadcast settings.
7REQUESTS_THROTTLED
8
9# Language is invalid.
10LANGUAGE_NOT_VALID
11
12# Streaming status is too long.
13STATUS_TOO_LONG
14
15# Streaming status uses banned words.
16STATUS_USES_BANNED_WORDS
17
18# Game name is too long.
19GAME_NAME_TOO_LONG
20
21# Unrecognized error returned from the backend service.
22UNKNOWN_ERROR
23}