export interface IMarketPayload { readonly transaction_ref: string; readonly transaction_date: Date; readonly subtotal: { amount: number; currency?: string; }; readonly fee?: { amount: number; currency?: string; }; }