@paddle/paddle-node-sdk
Version:
A Node.js SDK that you can use to integrate Paddle Billing with applications written in server-side JavaScript.
17 lines (16 loc) • 408 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.UnitTotals = void 0;
class UnitTotals {
subtotal;
discount;
tax;
total;
constructor(unitTotals) {
this.subtotal = unitTotals.subtotal;
this.discount = unitTotals.discount;
this.tax = unitTotals.tax;
this.total = unitTotals.total;
}
}
exports.UnitTotals = UnitTotals;