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