Skip to main content
Version: 8.9

Type Alias: ModifyProcessInstanceVariableInstruction

type ModifyProcessInstanceVariableInstruction = object;

Instruction describing which variables to create or update.

Properties

scopeId?

optional scopeId?: string;

The id of the element in which scope the variables should be created. Leave empty to create the variables in the global scope of the process instance.


variables

variables: object;

JSON document that will instantiate the variables at the scope defined by the scopeId. It must be a JSON object, as variables will be mapped in a key-value fashion.

Index Signature

[key: string]: unknown