OBJECT

DropAction

Contains all of the information about a Drop's action stating what happens when a drop is triggered. //To be deprecated.

link GraphQL Schema definition

1type DropAction {
2
3# The time in seconds a user has to claim a drop after occurence.
4claimDurationSeconds: Int! @deprecated( reason: "No longer supported" )
5
6# The description of this drop's action.
7description: String! @deprecated( reason: "No longer supported" )
8
9# The Action ID.
10id: ID! @deprecated( reason: "No longer supported" )
11
12# The type of action happening when a drop is triggered.
13type: DropActionType! @deprecated( reason: "No longer supported" )
14
15}