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.

15 lines (14 loc) 505 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.SubscriptionManagement = void 0; class SubscriptionManagement { updatePaymentMethod; cancel; constructor(subscriptionManagement) { this.updatePaymentMethod = subscriptionManagement.update_payment_method ? subscriptionManagement.update_payment_method : null; this.cancel = subscriptionManagement.cancel; } } exports.SubscriptionManagement = SubscriptionManagement;