StepExecution constructor

StepExecution({
  1. String? action,
  2. DateTime? executionEndTime,
  3. DateTime? executionStartTime,
  4. FailureDetails? failureDetails,
  5. String? failureMessage,
  6. Map<String, String>? inputs,
  7. bool? isCritical,
  8. bool? isEnd,
  9. int? maxAttempts,
  10. String? nextStep,
  11. String? onFailure,
  12. Map<String, List<String>>? outputs,
  13. Map<String, List<String>>? overriddenParameters,
  14. String? response,
  15. String? responseCode,
  16. String? stepExecutionId,
  17. String? stepName,
  18. AutomationExecutionStatus? stepStatus,
  19. TargetLocation? targetLocation,
  20. List<Target>? targets,
  21. int? timeoutSeconds,
  22. List<String>? validNextSteps,
})

Implementation

StepExecution({
  this.action,
  this.executionEndTime,
  this.executionStartTime,
  this.failureDetails,
  this.failureMessage,
  this.inputs,
  this.isCritical,
  this.isEnd,
  this.maxAttempts,
  this.nextStep,
  this.onFailure,
  this.outputs,
  this.overriddenParameters,
  this.response,
  this.responseCode,
  this.stepExecutionId,
  this.stepName,
  this.stepStatus,
  this.targetLocation,
  this.targets,
  this.timeoutSeconds,
  this.validNextSteps,
});