@paddle/paddle-node-sdk
Version:
A Node.js SDK that you can use to integrate Paddle Billing with applications written in server-side JavaScript.
14 lines (13 loc) • 490 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PaymentCardNotification = void 0;
class PaymentCardNotification {
constructor(paymentCard) {
this.type = paymentCard.type;
this.last4 = paymentCard.last4;
this.expiryMonth = paymentCard.expiry_month;
this.expiryYear = paymentCard.expiry_year;
this.cardholderName = paymentCard.cardholder_name;
}
}
exports.PaymentCardNotification = PaymentCardNotification;