30 lines
1011 B
JavaScript
30 lines
1011 B
JavaScript
|
"use strict";
|
||
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||
|
exports.ClaimRuleDesignations = exports.ClaimRule = void 0;
|
||
|
var ClaimRule = /** @class */ (function () {
|
||
|
function ClaimRule() {
|
||
|
this.isAnnualBalance = false;
|
||
|
this.onceMonthly = false;
|
||
|
this.onceDaily = false;
|
||
|
this.isAtActualPayment = false;
|
||
|
this.isDesignationWiseDifferent = false;
|
||
|
this.notMaximum = 0;
|
||
|
this.maxServiceLength = 0;
|
||
|
this.monthDurationFromLastClaim = 0;
|
||
|
this.noOfDependent = 0;
|
||
|
this.fixedAmount = 0;
|
||
|
this.claimRuleDesignations = [];
|
||
|
this.claimBasicItems = [];
|
||
|
}
|
||
|
return ClaimRule;
|
||
|
}());
|
||
|
exports.ClaimRule = ClaimRule;
|
||
|
var ClaimRuleDesignations = /** @class */ (function () {
|
||
|
function ClaimRuleDesignations() {
|
||
|
this.amount = 0;
|
||
|
this.claimBasicItemName = "";
|
||
|
}
|
||
|
return ClaimRuleDesignations;
|
||
|
}());
|
||
|
exports.ClaimRuleDesignations = ClaimRuleDesignations;
|
||
|
//# sourceMappingURL=claimRule.js.map
|