Skip to content

Credit Product Type

AcTypeKind

Credit product type for classification

Values

KeyValueDescription
AUTO1Auto Loan
MORTGAGE3Mortgage
CARD4Credit Card
CASH5Cash

Definition

typescript
export enum AcTypeKind {
  /** Auto Loan */
  AUTO = 1,

  /** Mortgage */
  MORTGAGE = 3,

  /** Credit Card */
  CARD = 4,

  /** Cash */
  CASH = 5,
}

export const AcTypeKindValues = [AcTypeKind.AUTO, AcTypeKind.MORTGAGE, AcTypeKind.CARD, AcTypeKind.CASH];