OBJECT

TriggerResult

A result of a try to trigger a drop on a channel.

link GraphQL Schema definition

1type TriggerResult {
2
3# The channel the drop was tried to be triggered on.
4channel: Channel
5
6# The drop instance id in case the drop was successfully triggered.
7dropInstanceID: ID
8
9# The status result of the try to trigger the drop.
10status: ManuallyTriggerDropResultStatus!
11
12}