@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.
13 lines • 740 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.EntitlementStatus = void 0;
var EntitlementStatus;
(function (EntitlementStatus) {
EntitlementStatus[EntitlementStatus["Accepted"] = 0] = "Accepted";
EntitlementStatus[EntitlementStatus["AcceptedWithChanges"] = 1] = "AcceptedWithChanges";
EntitlementStatus[EntitlementStatus["Rejected"] = 2] = "Rejected";
EntitlementStatus[EntitlementStatus["Pending"] = 3] = "Pending";
EntitlementStatus[EntitlementStatus["Requested"] = 4] = "Requested";
EntitlementStatus[EntitlementStatus["Deferred"] = 5] = "Deferred";
})(EntitlementStatus || (exports.EntitlementStatus = EntitlementStatus = {}));
//# sourceMappingURL=EntitlementStatus.js.map