ENUM

ChallengeConditionParticipantProcessingState

Whether or not the condition participant was successfully processed upon condition completion.

link GraphQL Schema definition

1enum ChallengeConditionParticipantProcessingState {
2
3# Pending completion of associated condition.
4PENDING
5
6# Condition participant processed successfully.
7SUCCESS
8
9# Error processing condition participant.
10ERROR
11
12# Unknown state.
13UNKNOWN
14}