Type Alias: ModifyProcessInstanceVariableInstruction
type ModifyProcessInstanceVariableInstruction = object;
Defined in: gen/types.gen.ts:5993
Instruction describing which variables to create or update.
Properties
scopeId?
optional scopeId: string;
Defined in: gen/types.gen.ts:6007
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;
Defined in: gen/types.gen.ts:5999
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