@atomixdesign/nodepay-fatzebra
Version:
Nodepay strategy for the Fatzebra payment gateway.
16 lines (15 loc) • 572 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.FatzebraCharge = void 0;
var FatzebraCharge = /** @class */ (function () {
function FatzebraCharge(orderNumber, amountInCents, customerIp, cardToken, capture) {
if (capture === void 0) { capture = true; }
this.orderNumber = orderNumber;
this.amountInCents = amountInCents;
this.customerIp = customerIp;
this.cardToken = cardToken;
this.capture = capture;
}
return FatzebraCharge;
}());
exports.FatzebraCharge = FatzebraCharge;