Contract Type
ContractTypeKind
Type of contract
Values
| Key | Value | Description |
|---|---|---|
CREDIT | 101911 | Credit |
DEPOSIT | 101912 | Deposit |
SHARE | 101913 | Share |
PAWN_TICKET | 101914 | Pawn Ticket |
RENT | 101915 | Rent |
INSURANCE_ACCOUNT | 101916 | Insurance Account |
Definition
typescript
export enum ContractTypeKind {
/** Credit */
CREDIT = 101911,
/** Deposit */
DEPOSIT = 101912,
/** Share */
SHARE = 101913,
/** Pawn Ticket */
PAWN_TICKET = 101914,
/** Rent */
RENT = 101915,
/** Insurance Account */
INSURANCE_ACCOUNT = 101916,
}
export const ContractTypeKindValues = [
ContractTypeKind.CREDIT,
ContractTypeKind.DEPOSIT,
ContractTypeKind.SHARE,
ContractTypeKind.PAWN_TICKET,
ContractTypeKind.RENT,
ContractTypeKind.INSURANCE_ACCOUNT,
];