@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.PositionCapacity = void 0;
var PositionCapacity;
(function (PositionCapacity) {
PositionCapacity[PositionCapacity["Principal"] = 0] = "Principal";
PositionCapacity[PositionCapacity["Agent"] = 1] = "Agent";
PositionCapacity[PositionCapacity["Customer"] = 2] = "Customer";
PositionCapacity[PositionCapacity["Counterparty"] = 3] = "Counterparty";
})(PositionCapacity || (exports.PositionCapacity = PositionCapacity = {}));
//# sourceMappingURL=PositionCapacity.js.map