Interest Rate Type
InterestRateTypeKind
Interest rate accrual period
Values
| Key | Value | Description |
|---|---|---|
FOR_PERIOD | 101121 | Per Period |
ANNUAL | 101122 | Annual |
DAILY | 101123 | Daily |
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,
];