Skip to content

Date Calculation Method

DateCalcMethodKind

Payment date calculation method

Values

KeyValueDescription
BANK101231Banking
USUAL101232Standard
IGNORE_DATE101233Ignore Offset
MONTH_LAST_DAY101234Month Last Day
MONTH_LAST_DAY_EXT101235Lease Date Calculation

Definition

typescript
export enum DateCalcMethodKind {
  /** Banking */
  BANK = 101231,

  /** Standard */
  USUAL = 101232,

  /** Ignore Offset */
  IGNORE_DATE = 101233,

  /** Month Last Day */
  MONTH_LAST_DAY = 101234,

  /** Lease Date Calculation */
  MONTH_LAST_DAY_EXT = 101235,
}

export const DateCalcMethodKindValues = [
  DateCalcMethodKind.BANK,
  DateCalcMethodKind.USUAL,
  DateCalcMethodKind.IGNORE_DATE,
  DateCalcMethodKind.MONTH_LAST_DAY,
  DateCalcMethodKind.MONTH_LAST_DAY_EXT,
];