# PriceUnitType

## Example Usage

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

let value: PriceUnitType = "FIAT";

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

## Values

```typescript
"FIAT" | "CUSTOM" | Unrecognized<string>
```