UNPKG

@paddle/paddle-node-sdk

Version:

A Node.js SDK that you can use to integrate Paddle Billing with applications written in server-side JavaScript.

12 lines (11 loc) 491 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.TaxRatesUsedNotification = void 0; const totals_notification_js_1 = require("./totals-notification.js"); class TaxRatesUsedNotification { constructor(taxRatesUsed) { this.taxRate = taxRatesUsed.tax_rate; this.totals = taxRatesUsed.totals ? new totals_notification_js_1.TotalsNotification(taxRatesUsed.totals) : null; } } exports.TaxRatesUsedNotification = TaxRatesUsedNotification;