# CustomFilterConstraint

Represents a custom filter constraint.

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**customFieldId** | **string** | The custom field id, which is needed to correlate the CUSTOM filter constraint to a custom field. | [optional] [default to undefined]
**dataFieldEntityType** | **string** | The custom filter constraint data field entity type. | [default to undefined]
**dataFieldType** | **string** | Represents a data field type of a custom filter constraint. | [default to undefined]
**dataFieldValue** | **string** | The custom filter constraint data field value. | [optional] [default to undefined]
**dataType** | **string** | Represents a data type of a custom filter constraint. | [default to undefined]
**filterElement** | **string** | Represents a filter element of a custom filter constraint. | [default to undefined]
**groupNumber** | **number** | The custom filter constraint group number. | [optional] [default to undefined]
**id** | **string** | The custom filter constraint ID, which must be unique. | [optional] [default to undefined]
**index** | **number** | The custom filter constraint index. | [optional] [default to undefined]
**secondValue** | **string** | The custom filter constraint second value. | [optional] [default to undefined]
**value** | **string** | The custom filter constraint value, which must be not null. | [default to undefined]

## Example

```typescript
import { CustomFilterConstraint } from './api';

const instance: CustomFilterConstraint = {
    customFieldId,
    dataFieldEntityType,
    dataFieldType,
    dataFieldValue,
    dataType,
    filterElement,
    groupNumber,
    id,
    index,
    secondValue,
    value,
};
```

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
