# TransactionType

## Example Usage

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

let value: TransactionType = "credit";

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

## Values

```typescript
"credit" | "debit" | Unrecognized<string>
```