@sotatech/nest-quickfix
Version:
A powerful NestJS implementation of the FIX (Financial Information eXchange) protocol. Provides high-performance, reliable messaging for financial trading applications with built-in session management, message validation, and recovery mechanisms.
11 lines • 565 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.TradeAllocStatus = void 0;
var TradeAllocStatus;
(function (TradeAllocStatus) {
TradeAllocStatus[TradeAllocStatus["PendingClear"] = 0] = "PendingClear";
TradeAllocStatus[TradeAllocStatus["Claimed"] = 1] = "Claimed";
TradeAllocStatus[TradeAllocStatus["Cleared"] = 2] = "Cleared";
TradeAllocStatus[TradeAllocStatus["Rejected"] = 3] = "Rejected";
})(TradeAllocStatus || (exports.TradeAllocStatus = TradeAllocStatus = {}));
//# sourceMappingURL=TradeAllocStatus.js.map