/** * 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;