inputOutputType property

String? inputOutputType
getter/setter pair

Specifies the input/output type for the parameter. Possible string values are:

  • "IN_OUT_TYPE_UNSPECIFIED" : Default.
  • "IN" : Input parameters for the integration. EventBus validates that these parameters exist in the integrations before execution.
  • "OUT" : Output Parameters for the integration. EventBus will only return the integration parameters tagged with OUT in the response back.
  • "IN_OUT" : Input and 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? inputOutputType;