import { PaymentType } from './PaymentType'; import { PaymentTransaction } from './PaymentTransaction'; export interface Payment { ID?: string; Type: PaymentType; readonly DateCreated?: string; CreditCardID?: string; SpendingAccountID?: string; Description?: string; readonly Currency?: string; Amount?: number; Accepted?: boolean; OrderReturnID?: string; xp?: TPaymentXp; readonly Transactions?: PaymentTransaction[]; }