StepResponse
This class is used to create the response returned by a step. A step return its data by returning an instance of StepResponse
.
Type parameters
TOutput
objectRequiredThe type of the output of the step.
TCompensateInput
objectRequiredThe type of the compensation input. If the step doesn't specify any compensation input, then the type of
TCompensateInput
is the same
as that of TOutput
.constructor
The constructor of the StepResponse
Type Parameters
TOutput
objectRequiredThe type of the output of the step.
TCompensateInput
objectRequiredThe type of the compensation input. If the step doesn't specify any compensation input, then the type of
TCompensateInput
is the same
as that of TOutput
.Parameters
output
TOutputRequiredThe output of the step.
compensateInput
TCompensateInputThe input to be passed as a parameter to the step's compensation function. If not provided, the
output
will be provided instead.Was this section helpful?