Skip to main content
Skip to main content

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

TOutputobjectRequired
The type of the output of the step.
TCompensateInputobjectRequired
The 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.

Methods

constructor

The constructor of the StepResponse

Type Parameters

TOutputobjectRequired
The type of the output of the step.
TCompensateInputobjectRequired
The 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

outputTOutputRequired
The output of the step.
compensateInputTCompensateInput
The 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?