RetryStageExecutionOutput.fromJson constructor

RetryStageExecutionOutput.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory RetryStageExecutionOutput.fromJson(Map<String, dynamic> json) {
  return RetryStageExecutionOutput(
    pipelineExecutionId: json['pipelineExecutionId'] as String?,
  );
}