ENUM

DropCampaignStatus

Possible status of a drops campaign.

link GraphQL Schema definition

1enum DropCampaignStatus {
2
3# Drop campaign is currently active.
4ACTIVE
5
6# The drop campaign is past its end date.
7EXPIRED
8
9# The drop campaign is currently in testing mode.
10TEST
11
12# The drop campaign is live but not yet past the start date.
13UPCOMING
14
15# The drop campaign has been turned off.
16DISABLED
17}