import { IPaymentCustomerMeta } from './paymentCustomerMeta.interface'; import { IPaymentStoreMeta } from './paymentStoreMeta.interface'; /** * payload that will be saved to payment */ export interface IPaymentOrderMeta { currency: string; decimalTotal: number; discount?: number; id: string; invoiceNumber: string; randomDigit?: string; paymentAmount: number; paymentMethod?: string; customerMeta?: IPaymentCustomerMeta; storeMeta?: IPaymentStoreMeta; items?: any; storeId?: string; redirectUrl?: string; cleanHubDonationAmount?: number; deliveryFee?: number; smallOrderFee?: number; minimumOrderAmount?: number; }