@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 • 430 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PutOrCall = void 0;
var PutOrCall;
(function (PutOrCall) {
PutOrCall[PutOrCall["Put"] = 0] = "Put";
PutOrCall[PutOrCall["Call"] = 1] = "Call";
PutOrCall[PutOrCall["Other"] = 2] = "Other";
PutOrCall[PutOrCall["Chooser"] = 3] = "Chooser";
})(PutOrCall || (exports.PutOrCall = PutOrCall = {}));
//# sourceMappingURL=PutOrCall.js.map