UNPKG

@atomixdesign/nodepay-paystream

Version:

Nodepay strategy for the Paystream payment gateway.

14 lines (13 loc) 485 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.PaystreamCharge = void 0; var PaystreamCharge = /** @class */ (function () { function PaystreamCharge(orderNumber, amountInCents, customerIp, cardToken) { this.orderNumber = orderNumber; this.amountInCents = amountInCents; this.customerIp = customerIp; this.cardToken = cardToken; } return PaystreamCharge; }()); exports.PaystreamCharge = PaystreamCharge;