@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) • 580 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ChargebackFeeNotification = void 0;
const adjustment_original_amount_notification_js_1 = require("./adjustment-original-amount-notification.js");
class ChargebackFeeNotification {
constructor(chargebackFee) {
this.amount = chargebackFee.amount;
this.original = chargebackFee.original ? new adjustment_original_amount_notification_js_1.AdjustmentOriginalAmountNotification(chargebackFee.original) : null;
}
}
exports.ChargebackFeeNotification = ChargebackFeeNotification;