@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) • 590 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.SubscriptionResumeOptions = void 0;
class SubscriptionResumeOptions {
constructor(options) {
var _a, _b;
this.paymentOutcome = (_a = options === null || options === void 0 ? void 0 : options.payment_outcome) !== null && _a !== void 0 ? _a : null;
this.dunningExhaustedAction = (_b = options === null || options === void 0 ? void 0 : options.dunning_exhausted_action) !== null && _b !== void 0 ? _b : null;
}
}
exports.SubscriptionResumeOptions = SubscriptionResumeOptions;