Skip to content

Schedule Calculation Method

DepositScheduleCalcMethodKind

Method for calculating interest withdrawal schedule

Values

KeyValueDescription
BANK_TYPE101881Banking
SIMPLE_TYPE101882Simple

Definition

typescript
export enum DepositScheduleCalcMethodKind {
  /** Banking */
  BANK_TYPE = 101881,

  /** Simple */
  SIMPLE_TYPE = 101882,
}

export const DepositScheduleCalcMethodKindValues = [
  DepositScheduleCalcMethodKind.BANK_TYPE,
  DepositScheduleCalcMethodKind.SIMPLE_TYPE,
];