import { IOrder } from '../order/order.interface'; import { IPaymentCustomerMeta } from './paymentCustomerMeta.interface'; export interface IInternalEmailData { recipients?: string; data: { order?: IOrder; }; } export interface ISubscription3DSNotificationPayload { customerRefId: string; customerMeta: IPaymentCustomerMeta; notificationParams: { [key: string]: any; }; }