ENUM

StartBountyErrorCode

Error types recognized.

link GraphQL Schema definition

1enum StartBountyErrorCode {
2
3# Invalid parameter in the request.
4INVALID_PARAMETER
5
6# The bounty cannot be started because it is not live.
7BOUNTY_NOT_LIVE
8
9# The stream title contains banned words.
10STREAM_TITLE_BANNED_WORDS
11
12# The stream title is too long.
13STREAM_TITLE_TOO_LONG
14
15# The user is not authorized to start the bounty.
16UNAUTHORIZED
17
18# Unknown error being returned from service.
19UNKNOWN_ERROR
20}