ENUM

BountyStatus

Represents all the possible bounty statuses.

link GraphQL Schema definition

1enum BountyStatus {
2
3# The bounty can be claimed by the user.
4AVAILABLE
5
6# The bounty has been claimed by the user and is in progress.
7LIVE
8
9# The bounty was completed successfully.
10COMPLETED
11
12# The bounty was cancelled before it was completed.
13CANCELLED
14}