Interface ModifyProcessInstanceReq

interface ModifyProcessInstanceReq {
    activateInstructions?: ActivateInstruction[];
    operationReference?: number | LosslessNumber;
    processInstanceKey: string;
    terminateInstructions?: TerminateInstruction[];
}

Properties

activateInstructions?: ActivateInstruction[]

Instructions describing which elements should be activated in which scopes, and which variables should be created

operationReference?: number | LosslessNumber

A reference key chosen by the user and will be part of all records resulted from this operation

processInstanceKey: string

The key of the process instance that should be modified

terminateInstructions?: TerminateInstruction[]

Instructions describing which elements should be terminated

Generated using TypeDoc