inOutType property
Specifies the input/output type for the parameter. Possible string values are:
- "IN_OUT_TYPE_UNSPECIFIED"
- "IN" : Input parameters for the workflow. EventBus validates that these parameters exist in the workflows before execution.
- "OUT" : Output Parameters for the workflow. EventBus will only return the workflow parameters tagged with OUT in the response back.
- "IN_OUT" : Input or Output Parameters. These can be used as both input and output. EventBus will validate for the existence of these parameters before execution and will also return this parameter back in the response.
Implementation
core.String? inOutType;