@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) • 404 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.CustomerBalance = void 0;
class CustomerBalance {
available;
reserved;
used;
constructor(customerBalance) {
this.available = customerBalance.available;
this.reserved = customerBalance.reserved;
this.used = customerBalance.used;
}
}
exports.CustomerBalance = CustomerBalance;