import { PaymentAllocation } from "./PaymentAllocation"; export interface Payment { id: string; business_id: string; external_id: string; status: string; amount: number; currency: string; payment_method: string; received_at: Date; imported_at: Date; updated_at?: Date; payment_allocations: PaymentAllocation[]; transaction_tags?: any; }