Repository URL to install this package:
|
Version:
1.1.3 ▾
|
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var leasingPrices_1 = require("./leasingPrices");
exports.LeasingPrices = leasingPrices_1.default;
var leasingUnits_1 = require("./leasingUnits");
exports.LeasingUnits = leasingUnits_1.default;
var LeasingParams = /** @class */ (function () {
function LeasingParams(availableDrivingDistances, availableLeasingDurations, financingType, drivingDistance, paymentPeriods, downPaymentPercent, interestRate, carPrice, units, prices) {
this.availableDrivingDistances = availableDrivingDistances;
this.availableLeasingDurations = availableLeasingDurations;
this.financingType = financingType;
this.drivingDistance = drivingDistance;
this.paymentPeriods = paymentPeriods;
this.downPaymentPercent = downPaymentPercent;
this.interestRate = interestRate;
this.carPrice = carPrice;
this.units = units;
this.prices = prices;
}
return LeasingParams;
}());
exports.default = LeasingParams;
//# sourceMappingURL=leasingParams.js.map