@camunda8/sdk
    Preparing search index...

    Interface SearchUserTaskVariablesResponse

    The user task variables search response for CamundaRestClient.

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

    Hierarchy (View Summary)

    • PaginatedSearchResponse<
          {
              isTruncated: boolean;
              name: string;
              processInstanceKey: string;
              scopeKey: string;
              tenantId: string;
              value: string;
              variableKey: string;
          },
      >
      • SearchUserTaskVariablesResponse
    Index

    Properties

    Properties

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

    The matching items.

    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.