interface QueryFilterRequest {
    isTruncated?: boolean;
    name?: string | AdvancedStringFilter;
    processInstanceKey?: string | AdvancedStringFilter;
    scopeKey?: string | AdvancedStringFilter;
    tenantId?: string;
    value?: string | AdvancedStringFilter;
    variableKey?: string | AdvancedStringFilter;
}

Properties

isTruncated?: boolean

Whether the value is truncated or not.

name?: string | AdvancedStringFilter

Name of the variable.

processInstanceKey?: string | AdvancedStringFilter

The key of the process instance of this variable.

scopeKey?: string | AdvancedStringFilter

The key of the scope of this variable.

tenantId?: string

Tenant ID of this variable.

value?: string | AdvancedStringFilter

The value of the variable.

variableKey?: string | AdvancedStringFilter

The key for this variable.

Generated using TypeDoc