validNextSteps property

List<String>? validNextSteps
final

Strategies used when step fails, we support Continue and Abort. Abort will fail the automation when the step fails. Continue will ignore the failure of current step and allow automation to run the next step. With conditional branching, we add step:stepName to support the automation to go to another specific step.

Implementation

final List<String>? validNextSteps;