@paddle/paddle-node-sdk
Version:
A Node.js SDK that you can use to integrate Paddle Billing with applications written in server-side JavaScript.
14 lines (13 loc) • 417 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.TaxRatesUsed = void 0;
const totals_js_1 = require("./totals.js");
class TaxRatesUsed {
taxRate;
totals;
constructor(taxRatesUsed) {
this.taxRate = taxRatesUsed.tax_rate;
this.totals = taxRatesUsed.totals ? new totals_js_1.Totals(taxRatesUsed.totals) : null;
}
}
exports.TaxRatesUsed = TaxRatesUsed;