Deposit Rate Type
DepositRateTypeKind
Type of deposit interest rate
Values
| Key | Value | Description |
|---|---|---|
SIMPLE | 101871 | Simple |
COMPOSITE | 101872 | Compound |
Definition
typescript
export enum DepositRateTypeKind {
/** Simple */
SIMPLE = 101871,
/** Compound */
COMPOSITE = 101872,
}
export const DepositRateTypeKindValues = [DepositRateTypeKind.SIMPLE, DepositRateTypeKind.COMPOSITE];