ENUM

CancelBountyErrorCode

Error types recognized.

link GraphQL Schema definition

1enum CancelBountyErrorCode {
2
3# Invalid parameter in the request.
4INVALID_PARAMETER
5
6# Bounty isn't live, thus cannot be canceled.
7BOUNTY_NOT_LIVE
8
9# Unknown error being returned from service.
10UNKNOWN_ERROR
11}