@atomixdesign/nodepay-paystream
Version:
Nodepay strategy for the Paystream payment gateway.
15 lines (14 loc) • 568 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PaystreamCreditCard = void 0;
var PaystreamCreditCard = /** @class */ (function () {
function PaystreamCreditCard(cardNumber, expiryDateMonth, expiryDateYear, CCV, cardHolderName) {
this.cardNumber = cardNumber;
this.expiryDateMonth = expiryDateMonth;
this.expiryDateYear = expiryDateYear;
this.CCV = CCV;
this.cardHolderName = cardHolderName;
}
return PaystreamCreditCard;
}());
exports.PaystreamCreditCard = PaystreamCreditCard;