@atomixdesign/nodepay-pay-way
Version:
Nodepay strategy for the WestPac PayWay payment gateway.
18 lines (17 loc) • 832 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PaywayPaymentSchedule = void 0;
var PaywayPaymentSchedule = /** @class */ (function () {
function PaywayPaymentSchedule(customerId, startDate, amountInCents, frequency, nextPaymentDate, nextPrincipalAmount, numberOfPaymentsRemaining, finalPrincipalAmount) {
this.customerId = customerId;
this.startDate = startDate;
this.amountInCents = amountInCents;
this.frequency = frequency;
this.nextPaymentDate = nextPaymentDate;
this.nextPrincipalAmount = nextPrincipalAmount;
this.numberOfPaymentsRemaining = numberOfPaymentsRemaining;
this.finalPrincipalAmount = finalPrincipalAmount;
}
return PaywayPaymentSchedule;
}());
exports.PaywayPaymentSchedule = PaywayPaymentSchedule;