Skip to content

Early Repayment Notice Status

EarlyRepaymentNoticeStatusKind

Status of early repayment application

Values

KeyValueDescription
ACTIVE"ACTIVE"New (Active)
COMPLETED"COMPLETED"Completed
PARTIALLY_COMPLETED"PARTIALLY_COMPLETED"Partially Completed
OVERDUE"OVERDUE"Overdue
CANCELED"CANCELED "Canceled

Definition

typescript
export enum EarlyRepaymentNoticeStatusKind {
  /** New (Active) */
  ACTIVE = 'ACTIVE',

  /** Completed */
  COMPLETED = 'COMPLETED',

  /** Partially Completed */
  PARTIALLY_COMPLETED = 'PARTIALLY_COMPLETED',

  /** Overdue */
  OVERDUE = 'OVERDUE',

  /** Canceled */
  CANCELED = 'CANCELED ',
}

export const EarlyRepaymentNoticeStatusKindValues = [
  EarlyRepaymentNoticeStatusKind.ACTIVE,
  EarlyRepaymentNoticeStatusKind.COMPLETED,
  EarlyRepaymentNoticeStatusKind.PARTIALLY_COMPLETED,
  EarlyRepaymentNoticeStatusKind.OVERDUE,
  EarlyRepaymentNoticeStatusKind.CANCELED,
];