@paddle/paddle-node-sdk
Version:
A Node.js SDK that you can use to integrate Paddle Billing with applications written in server-side JavaScript.
8 lines (7 loc) • 416 B
JavaScript
export class SubscriptionCancellationOptions {
constructor(options) {
var _a, _b;
this.effectiveFrom = (_a = options === null || options === void 0 ? void 0 : options.effective_from) !== null && _a !== void 0 ? _a : null;
this.hasPastDueTransaction = (_b = options === null || options === void 0 ? void 0 : options.has_past_due_transaction) !== null && _b !== void 0 ? _b : null;
}
}