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.

19 lines (18 loc) 516 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.PayoutNotification = void 0; class PayoutNotification { id; remittanceReference; status; amount; currencyCode; constructor(payout) { this.id = payout.id; this.remittanceReference = payout.remittance_reference; this.status = payout.status; this.amount = payout.amount; this.currencyCode = payout.currency_code; } } exports.PayoutNotification = PayoutNotification;