@paddle/paddle-node-sdk
Version:
A Node.js SDK that you can use to integrate Paddle Billing with applications written in server-side JavaScript.
15 lines (14 loc) • 563 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.TotalAdjustmentsNotification = void 0;
class TotalAdjustmentsNotification {
constructor(totalAdjustments) {
this.subtotal = totalAdjustments.subtotal;
this.tax = totalAdjustments.tax;
this.total = totalAdjustments.total;
this.fee = totalAdjustments.fee;
this.earnings = totalAdjustments.earnings;
this.currencyCode = totalAdjustments.currency_code;
}
}
exports.TotalAdjustmentsNotification = TotalAdjustmentsNotification;