Interface CreateProcessBaseRequest<V>

interface CreateProcessBaseRequest<V> {
    bpmnProcessId: string;
    operationReference?: number | LosslessNumber;
    tenantId?: string;
    variables: V;
    version?: number;
}

Type Parameters

Hierarchy (view full)

Properties

bpmnProcessId: string

The BPMN process ID of the process definition

operationReference?: number | LosslessNumber

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

tenantId?: string

The tenantId for a multi-tenant enabled cluster.

variables: V

JSON document that will instantiate the variables for the root variable scope of the process instance.

version?: number

The version of the process; if not specified it will use the latest version

Generated using TypeDoc