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