Skip to content

Deposit Rate Type

DepositRateTypeKind

Type of deposit interest rate

Values

KeyValueDescription
SIMPLE101871Simple
COMPOSITE101872Compound

Definition

typescript
export enum DepositRateTypeKind {
  /** Simple */
  SIMPLE = 101871,

  /** Compound */
  COMPOSITE = 101872,
}

export const DepositRateTypeKindValues = [DepositRateTypeKind.SIMPLE, DepositRateTypeKind.COMPOSITE];