Interest Charge Method
InterestChargeMethodKind
Method of interest calculation for the contract
Values
| Key | Value | Description |
|---|---|---|
GERMAN | 101861 | German |
FRENCH | 101862 | French |
ENGLISH | 101863 | English |
Definition
typescript
export enum InterestChargeMethodKind {
/** German */
GERMAN = 101861,
/** French */
FRENCH = 101862,
/** English */
ENGLISH = 101863,
}
export const InterestChargeMethodKindValues = [
InterestChargeMethodKind.GERMAN,
InterestChargeMethodKind.FRENCH,
InterestChargeMethodKind.ENGLISH,
];