# PaymentMethodType

## Example Usage

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

let value: PaymentMethodType = "OFFLINE";

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

## Values

```typescript
"CARD" | "ACH" | "OFFLINE" | "CREDITS" | "PAYMENT_LINK" | "UPI" | Unrecognized<string>
```