@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) • 360 B
JavaScript
export 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;
}
}