# AlertCondition

## Example Usage

```typescript
import { AlertCondition } from "@flexprice/sdk/sdk/models";

let value: AlertCondition = "below";

// Open enum: unrecognized values are captured as Unrecognized<string>
```

## Values

```typescript
"above" | "below" | Unrecognized<string>
```