@camunda8/sdk
    Preparing search index...

    Interface SearchVariablesResponse

    interface SearchVariablesResponse {
        items: {
            processInstanceKey: string;
            scopeKey: string;
            variableKey: string;
        }[];
        page: SearchResponsePagination;
    }
    Index

    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.