Interface QueryProcessInstanceResponse

interface QueryProcessInstanceResponse {
    items: {
        endDate?: string;
        hasIncident: boolean;
        parentFlowNodeInstanceKey: string;
        parentProcessInstanceKey: string;
        processDefinitionId: string;
        processDefinitionKey: string;
        processDefinitionName: string;
        processDefinitionVersion: string;
        processInstanceKey: string;
        startDate: string;
        state: string;
        tenantId: string;
    }[];
    page: QueryResponsePagination;
}

Properties

Properties

items: {
    endDate?: string;
    hasIncident: boolean;
    parentFlowNodeInstanceKey: string;
    parentProcessInstanceKey: string;
    processDefinitionId: string;
    processDefinitionKey: string;
    processDefinitionName: string;
    processDefinitionVersion: string;
    processInstanceKey: string;
    startDate: string;
    state: string;
    tenantId: string;
}[]

Type declaration

  • Optional endDate?: string

    The end date of the process instance.

  • hasIncident: boolean

    Has an incident.

  • parentFlowNodeInstanceKey: string

    The key of the parent flow node instance.

  • parentProcessInstanceKey: string

    The key of the parent process instance.

  • processDefinitionId: string

    The BPMN process ID of the process definition.

  • processDefinitionKey: string

    The key of the process definition.

  • processDefinitionName: string

    The name of the process definition.

  • processDefinitionVersion: string

    The version of the process definition.

  • processInstanceKey: string

    The key of the process instance.

  • startDate: string

    The start date of the process instance.

  • state: string

    The state of the process instance.

  • tenantId: string

    The tenant ID.

Generated using TypeDoc