import { Currency } from './currency'; import { PaymentMetadata } from './common'; export interface Payment { uuid: string; createdAt: string; from: string; to: string; name: string; description: string; amount: number; amountMinUnits: string; currencyId: number; currency: Currency; test: boolean; productId?: number; transactionHash: string; customerUUID: string; metadata?: PaymentMetadata; } export interface CombinedPayment { source: 'payment' | 'subscription_history'; uuid: string; createdAt: string; from: string; to: string; name: string; description: string; amount: number; amountMinUnits: string; currencyId: number; currency: Currency; productId?: number | null; transactionHash: string; customerUUID: string; subscriptionUUID?: string; test: boolean; metadata?: PaymentMetadata; } //# sourceMappingURL=payment.d.ts.map