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.

12 lines (11 loc) 365 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.CustomerBalance = void 0; class CustomerBalance { constructor(customerBalance) { this.available = customerBalance.available; this.reserved = customerBalance.reserved; this.used = customerBalance.used; } } exports.CustomerBalance = CustomerBalance;