Skip to content

Interest Rate Type

InterestRateTypeKind

Interest rate accrual period

Values

KeyValueDescription
FOR_PERIOD101121Per Period
ANNUAL101122Annual
DAILY101123Daily

Definition

typescript
export enum InterestRateTypeKind {
  /** Per Period */
  FOR_PERIOD = 101121,

  /** Annual */
  ANNUAL = 101122,

  /** Daily */
  DAILY = 101123,
}

export const InterestRateTypeKindValues = [
  InterestRateTypeKind.FOR_PERIOD,
  InterestRateTypeKind.ANNUAL,
  InterestRateTypeKind.DAILY,
];