OBJECT

EventBasedDrop

Drop triggered by an in-game event.

link GraphQL Schema definition

1type EventBasedDrop 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 event conditions which must be met for this drop to be earned.
13conditions: [DropEventCondition!]!
14
15# The time this drop becomes unavailable.
16endAt: Time!
17
18# A unique identifier.
19id: ID!
20
21# Describes how the event will be accomplished.
22missionDescription: String!
23
24# Name of the mission a streamer has to achieve.
25missionName: String!
26
27# The name of this drop.
28name: String!
29
30# The time this drop becomes available.
31startAt: Time!
32
33}