Files
vontor-cz/frontend/src/api/generated/public/models/currencyEnum.ts
2026-04-20 00:04:15 +02:00

33 lines
606 B
TypeScript

/**
* Generated by orval v8.8.0 🍺
* Do not edit manually.
* OpenAPI spec version: 0.0.0
*/
/**
* * `EUR` - Euro
* `CZK` - Czech Koruna
* `USD` - US Dollar
* `GBP` - British Pound
* `PLN` - Polish Zloty
* `HUF` - Hungarian Forint
* `SEK` - Swedish Krona
* `DKK` - Danish Krone
* `NOK` - Norwegian Krone
* `CHF` - Swiss Franc
*/
export type CurrencyEnum = (typeof CurrencyEnum)[keyof typeof CurrencyEnum];
export const CurrencyEnum = {
EUR: "EUR",
CZK: "CZK",
USD: "USD",
GBP: "GBP",
PLN: "PLN",
HUF: "HUF",
SEK: "SEK",
DKK: "DKK",
NOK: "NOK",
CHF: "CHF",
} as const;