# FilterUnaryOperator

## Enum Definition

```python
from enum import Enum

class FilterUnaryOperator(Enum):
    """Represents the unary operators used in filtering procedures."""
    NOT = 0
```

## Enum Members

| Member | Value | Description                                |
| ------ | ----- | ------------------------------------------ |
| `NOT`  | `0`   | Logical NOT operator, negates a condition. |
