@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) • 763 B
JavaScript
import { ChargebackFeeNotification } from './chargeback-fee-notification.js';
export class TransactionPayoutTotalsAdjustedNotification {
constructor(transactionPayoutTotalsAdjusted) {
this.subtotal = transactionPayoutTotalsAdjusted.subtotal;
this.tax = transactionPayoutTotalsAdjusted.tax;
this.total = transactionPayoutTotalsAdjusted.total;
this.fee = transactionPayoutTotalsAdjusted.fee;
this.chargebackFee = transactionPayoutTotalsAdjusted.chargeback_fee
? new ChargebackFeeNotification(transactionPayoutTotalsAdjusted.chargeback_fee)
: null;
this.earnings = transactionPayoutTotalsAdjusted.earnings;
this.currencyCode = transactionPayoutTotalsAdjusted.currency_code;
}
}