Amount Moving Direction
AmountMovingDirectionKind
Direction of money flow
Values
| Key | Value | Description |
|---|---|---|
PAYMENT | 101781 | Payment (Income) |
WITHDRAWAL | 101782 | Withdrawal (Expense) |
Definition
typescript
export enum AmountMovingDirectionKind {
/** Payment (Income) */
PAYMENT = 101781,
/** Withdrawal (Expense) */
WITHDRAWAL = 101782,
}
export const AmountMovingDirectionKindValues = [
AmountMovingDirectionKind.PAYMENT,
AmountMovingDirectionKind.WITHDRAWAL,
];