@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.
10 lines • 496 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.QuoteAckStatus = void 0;
var QuoteAckStatus;
(function (QuoteAckStatus) {
QuoteAckStatus[QuoteAckStatus["ReceivedNotYetProcessed"] = 0] = "ReceivedNotYetProcessed";
QuoteAckStatus[QuoteAckStatus["Accepted"] = 1] = "Accepted";
QuoteAckStatus[QuoteAckStatus["Rejected"] = 2] = "Rejected";
})(QuoteAckStatus || (exports.QuoteAckStatus = QuoteAckStatus = {}));
//# sourceMappingURL=QuoteAckStatus.js.map