# AggregationType

## Example Usage

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

let value: AggregationType = "COUNT";

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

## Values

```typescript
"COUNT" | "SUM" | "AVG" | "COUNT_UNIQUE" | "LATEST" | "SUM_WITH_MULTIPLIER" | "MAX" | "WEIGHTED_SUM" | Unrecognized<string>
```