ENUM

ClaimBountyErrorCode

Error types recognized.

link GraphQL Schema definition

1enum ClaimBountyErrorCode {
2
3# Invalid parameter in the request.
4INVALID_PARAMETER
5
6# User reached the maximum number of bounties.
7BOUNTY_LIMIT_REACHED
8
9# User already claimed that bounty.
10BOUNTY_ALREADY_CLAIMED
11
12# Unknown error being returned from service.
13UNKNOWN_ERROR
14}