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