eventExecutionState property
The execution state of this event. Possible string values are:
- "UNSPECIFIED"
- "ON_HOLD" : Event is received and waiting for the execution. This happens when firing the event via "postToQueue" or "schedule".
- "IN_PROCESS" : Event is under processing.
- "SUCCEEDED" : Event execution successfully finished. There's no more change after this state.
- "FAILED" : Event execution failed. There's no more change after this state.
- "CANCELED" : Event execution canceled by user. There's no more change after this state.
- "RETRY_ON_HOLD" : Event execution failed and waiting for retry.
- "SUSPENDED" : Event execution suspended and waiting for manual intervention.
Implementation
core.String? eventExecutionState;