The user task variables search response.

interface UserTaskVariablesResponse {
    items: {
        isTruncated: boolean;
        name: string;
        processInstanceKey: string;
        scopeKey: string;
        tenantId: string;
        value: string;
        variableKey: string;
    }[];
    page: QueryResponsePagination;
}

Properties

Properties

items: {
    isTruncated: boolean;
    name: string;
    processInstanceKey: string;
    scopeKey: string;
    tenantId: string;
    value: string;
    variableKey: string;
}[]

The matching variables.

Type declaration

  • isTruncated: boolean
  • name: string
  • processInstanceKey: string

    The key of the process instance of this variable.

  • scopeKey: string

    The key of the scope of this variable.

  • tenantId: string
  • value: string
  • variableKey: string

    The key for this variable.

Pagination information about the search results.

Generated using TypeDoc