Interest Payment Periodicity
InterestPaymentPeriodicityKind
Frequency of deposit interest payments
Values
| Key | Value | Description |
|---|---|---|
MONTHLY | 101511 | Monthly |
QUARTERLY | 101512 | Quarterly |
AT_THE_END_OF_CONTRACT | 101513 | At Deposit Closure |
HALF_YEARLY | 101514 | Semi-Annually |
YEARLY | 101515 | Annually |
Definition
typescript
export enum InterestPaymentPeriodicityKind {
/** Monthly */
MONTHLY = 101511,
/** Quarterly */
QUARTERLY = 101512,
/** At Deposit Closure */
AT_THE_END_OF_CONTRACT = 101513,
/** Semi-Annually */
HALF_YEARLY = 101514,
/** Annually */
YEARLY = 101515,
}
export const InterestPaymentPeriodicityKindValues = [
InterestPaymentPeriodicityKind.MONTHLY,
InterestPaymentPeriodicityKind.QUARTERLY,
InterestPaymentPeriodicityKind.AT_THE_END_OF_CONTRACT,
InterestPaymentPeriodicityKind.HALF_YEARLY,
InterestPaymentPeriodicityKind.YEARLY,
];