Schedule Calculation Method
DepositScheduleCalcMethodKind
Method for calculating interest withdrawal schedule
Values
| Key | Value | Description |
|---|---|---|
BANK_TYPE | 101881 | Banking |
SIMPLE_TYPE | 101882 | Simple |
Definition
typescript
export enum DepositScheduleCalcMethodKind {
/** Banking */
BANK_TYPE = 101881,
/** Simple */
SIMPLE_TYPE = 101882,
}
export const DepositScheduleCalcMethodKindValues = [
DepositScheduleCalcMethodKind.BANK_TYPE,
DepositScheduleCalcMethodKind.SIMPLE_TYPE,
];