ENUM

DropRuleType

The type of drop rule you're creating. Event vs Minutes Watched.

link GraphQL Schema definition

1enum DropRuleType {
2
3# A drop that is triggered by an in-game event.
4EVENT_BASED
5
6# A drop that is granted based on the user's minutes-watched of the drop's game.
7TIME_BASED
8
9# A drop that is triggered by an manual triggered event.
10MANUAL_TRIGGER_BASED
11}