/** * Price model */ export type PriceDTO = { /** * Price amount */ amount?: number; /** * Price currency */ currency?: PriceDTO.currency; }; export declare namespace PriceDTO { /** * Price currency */ enum currency { EUR = "EUR", DKK = "DKK", USD = "USD" } }