@solidgate/client-sdk-loader
Version:
Solidgate client sdk loader
27 lines (26 loc) • 614 B
TypeScript
export default interface PriceBreakdown {
productPrice: {
amount: string;
currency: string;
currencyIcon: string;
};
discountPrice?: {
amount: string;
currency: string;
currencyIcon: string;
};
trialPrice?: {
amount: string;
currency: string;
currencyIcon: string;
};
price: {
source: 'productPrice' | 'discountPrice' | 'trialPrice';
amount: string;
taxAmount: string;
taxRate: number;
taxableAmount: string;
currency: string;
currencyIcon: string;
};
}