pluggy-sdk
Version: 
Official Node SDK for Pluggy API.
16 lines (15 loc) • 582 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.TransactionStatus = exports.TRANSACTION_TYPES = void 0;
/**
 * @typedef TransactionType
 * The direction of the transaction.
 * If DEBIT money going out of the account.
 * If CREDIT money going into the account.
 */
exports.TRANSACTION_TYPES = ['DEBIT', 'CREDIT'];
var TransactionStatus;
(function (TransactionStatus) {
    TransactionStatus["PENDING"] = "PENDING";
    TransactionStatus["POSTED"] = "POSTED";
})(TransactionStatus = exports.TransactionStatus || (exports.TransactionStatus = {}));