export default interface ApplyCouponPrices {
productPrice: {
amount: string;
currency: string;
currencyIcon: string;
};
discountPrice: {
amount: string;
currency: string;
currencyIcon: string;
};
trialPrice?: {
amount: string;
currency: string;
currencyIcon: string;
};
}