ENUM

BountyCampaignStatus

The status of a bounty campaign.

link GraphQL Schema definition

1enum BountyCampaignStatus {
2
3# The campaign is pending approval.
4PENDING
5
6# The campaign has been approved.
7APPROVED
8
9# The campaign has been rejected.
10REJECTED
11
12# The campaign is live.
13LIVE
14
15# The campaign is done.
16COMPLETED
17}