@atomixdesign/nodepay-pay-way
Version:
Nodepay strategy for the WestPac PayWay payment gateway.
16 lines (15 loc) • 609 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PaywayCharge = void 0;
var PaywayCharge = /** @class */ (function () {
function PaywayCharge(orderNumber, amountInCents, customerId, customerIpAddress, merchantId, singleUseTokenId) {
this.orderNumber = orderNumber;
this.amountInCents = amountInCents;
this.customerId = customerId;
this.customerIpAddress = customerIpAddress;
this.merchantId = merchantId;
this.singleUseTokenId = singleUseTokenId;
}
return PaywayCharge;
}());
exports.PaywayCharge = PaywayCharge;