interface ProcessMetadata {
    bpmnProcessId: string;
    processDefinitionKey: string;
    resourceName: string;
    tenantId: string;
    version: number;
}

Properties

bpmnProcessId: string

the bpmn process ID, as parsed during deployment; together with the version forms a unique identifier for a specific process definition

processDefinitionKey: string

the assigned key, which acts as a unique identifier for this process

resourceName: string

the resource name (see: ProcessRequestObject.name) from which this process was parsed

tenantId: string

the tenant identifier of the deployed process

version: number

the assigned process version

Generated using TypeDoc