OBJECT

ManualTriggerBasedDrop

Drop manually triggered.

link GraphQL Schema definition

1type ManualTriggerBasedDrop implements DropType {
2
3# The rewards for this drop and how often those rewards can be awarded.
4benefitEdges: [DropBenefitEdge!]
5
6# The campaign this drop belongs to.
7campaign: DropCampaign!
8
9# Amount of time the viewer has to claim the drop after the rule is completed.
10claimDurationSeconds: Int!
11
12# The time this drop becomes unavailable.
13endAt: Time!
14
15# A unique identifier.
16id: ID!
17
18# The name of this drop.
19name: String!
20
21# The time this drop becomes available.
22startAt: Time!
23
24}