# FileType

## Example Usage

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

let value: FileType = "JSON";

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

## Values

```typescript
"CSV" | "JSON" | Unrecognized<string>
```