OBJECT

TimeBasedDrop

A drop triggered by accummulating minutes watched.

link GraphQL Schema definition

1type TimeBasedDrop 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# The time at which this drop becomes unavailable.
10endAt: Time!
11
12# A unique identifier.
13id: ID!
14
15# The name of this drop.
16name: String!
17
18# The drops that must have been claimed before this drop can be claimed / made
19# progress for.
20preconditionDrops: [TimeBasedDrop!]
21
22# The number of minutes a user has to watch in order to claim the reward.
23requiredMinutesWatched: Int!
24
25# User specific data associated with the TimeBasedDrop.
26self: TimeBasedDropSelfEdge!
27
28# The time at which this drop becomes available.
29startAt: Time!
30
31}