@atomixdesign/nodepay-fatzebra
Version:
Nodepay strategy for the Fatzebra payment gateway.
26 lines (25 loc) • 1.09 kB
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.FatzebraPaymentPlan = void 0;
var FatzebraPaymentPlan = /** @class */ (function () {
function FatzebraPaymentPlan(customerId, amountInCents, frequency, startDate, // "2025-07-16"
paymentMethod, anniversary, setupFee, endDate, reference, description, currency, totalCount, totalAmount, failedPaymentFee, retryInterval) {
this.customerId = customerId;
this.amountInCents = amountInCents;
this.frequency = frequency;
this.startDate = startDate;
this.paymentMethod = paymentMethod;
this.anniversary = anniversary;
this.setupFee = setupFee;
this.endDate = endDate;
this.reference = reference;
this.description = description;
this.currency = currency;
this.totalCount = totalCount;
this.totalAmount = totalAmount;
this.failedPaymentFee = failedPaymentFee;
this.retryInterval = retryInterval;
}
return FatzebraPaymentPlan;
}());
exports.FatzebraPaymentPlan = FatzebraPaymentPlan;