interface QueryVariablesResponse {
    items: {
        processInstanceKey: string;
        scopeKey: string;
        variableKey: string;
    }[];
    page: QueryResponsePagination;
}

Properties

Properties

items: {
    processInstanceKey: string;
    scopeKey: string;
    variableKey: string;
}[]

The matching variables.

Type declaration

  • processInstanceKey: string

    The key of the process instance of this variable.

  • scopeKey: string

    The key of the scope of this variable.

  • variableKey: string

    The key for this variable.

Pagination information about the search results.

Generated using TypeDoc