import type { CurrencyValue } from './currency-value.model'; import type { PaymentMethod } from './payment-method.model'; export interface Payment { amount?: CurrencyValue; id?: string; paymentMethod: PaymentMethod; }