Skip to content

Interest Charge Method

InterestChargeMethodKind

Method of interest calculation for the contract

Values

KeyValueDescription
GERMAN101861German
FRENCH101862French
ENGLISH101863English

Definition

typescript
export enum InterestChargeMethodKind {
  /** German */
  GERMAN = 101861,

  /** French */
  FRENCH = 101862,

  /** English */
  ENGLISH = 101863,
}

export const InterestChargeMethodKindValues = [
  InterestChargeMethodKind.GERMAN,
  InterestChargeMethodKind.FRENCH,
  InterestChargeMethodKind.ENGLISH,
];