ofx4js
Version:
A javascript OFX library, ported from OFX4J
71 lines (70 loc) • 997 B
TypeScript
export declare enum TransactionType {
/**
* generic credit.
*/
CREDIT = 0,
/**
* genertic debit.
*/
DEBIT = 1,
/**
* interest earned.
*/
INT = 2,
/**
* dividend.
*/
DIV = 3,
/**
* bank fee.
*/
FEE = 4,
/**
* service charge.
*/
SRVCHG = 5,
/**
* deposit.
*/
DEP = 6,
/**
* ATM transaction.
*/
ATM = 7,
/**
* point of sale
*/
POS = 8,
/**
* transfer
*/
XFER = 9,
/**
* check
*/
CHECK = 10,
/**
* electronic payment
*/
PAYMENT = 11,
/**
* cash.
*/
CASH = 12,
/**
* direct deposit.
*/
DIRECTDEP = 13,
/**
* merchant-initiated debit
*/
DIRECTDEBIT = 14,
/**
* repeating payment.
*/
REPEATPMT = 15,
/**
* other
*/
OTHER = 16
}