OBJECT
ChallengeConditionParticipant
A condition participant action that will be taken if an associated condition is satisfied.
link GraphQL Schema definition
1 type ChallengeConditionParticipant { 2 3 # The associated condition. 4 : ChallengeCondition 5 6 # The effect that will occur if the condition participant is satisfied. 7 : ChallengeEffect! 8 9 # Final state of the condition participant. 10 : ChallengeConditionParticipantEndState! 11 12 # Unique ID of the condition participant. 13 : ID! 14 15 # The user who creates and owns the condition participant. 16 : User 17 18 # Whether or not the condition participant was successfully processed upon 19 # condition completion. 20 : ChallengeConditionParticipantProcessingState! 21 22 }