ENUM

BountyBoardUserStatus

Represents the user's status on Bounty Board.

link GraphQL Schema definition

1enum BountyBoardUserStatus {
2
3# The user has been invited to join the Bounty Board program but cannot
4# participate in bounties yet.
5INVITED
6
7# The user has been accepted into the Bounty Board program and can participate in
8# bounties.
9ACCEPTED
10
11# The user has been banned from the Bounty Board program.
12BANNED
13
14# The user is not part of the Bounty Board program.
15NONE
16}