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.

14 lines (13 loc) 507 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.ChargebackFee = void 0; const adjustment_original_amount_js_1 = require("./adjustment-original-amount.js"); class ChargebackFee { amount; original; constructor(chargebackFee) { this.amount = chargebackFee.amount; this.original = chargebackFee.original ? new adjustment_original_amount_js_1.AdjustmentOriginalAmount(chargebackFee.original) : null; } } exports.ChargebackFee = ChargebackFee;