ActivityFunctionParameters interface

The parameters used for activity function definition.

Properties

additionalProperties

If true the function has additional parameters.

properties

The dictionary of function arguments.

required

The list of the required parameters.

type

The parameter type, it is always object.

Property Details

additionalProperties

If true the function has additional parameters.

additionalProperties?: boolean

Property Value

boolean

properties

The dictionary of function arguments.

properties: Record<string, FunctionArgument>

Property Value

Record<string, FunctionArgument>

required

The list of the required parameters.

required: string[]

Property Value

string[]

type

The parameter type, it is always object.

type: "object"

Property Value

"object"