Interface ModifyProcessInstanceRequest

interface ModifyProcessInstanceRequest {
    activateInstructions?: ActivateInstruction[];
    operationReference?: string;
    processInstanceKey: string;
    terminateInstructions?: TerminateInstruction[];
}

Properties

activateInstructions?: ActivateInstruction[]

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

operationReference?: string

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