@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.
18 lines • 987 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PaymentSubType = void 0;
var PaymentSubType;
(function (PaymentSubType) {
PaymentSubType[PaymentSubType["Initial"] = 0] = "Initial";
PaymentSubType[PaymentSubType["Intermediate"] = 1] = "Intermediate";
PaymentSubType[PaymentSubType["Final"] = 2] = "Final";
PaymentSubType[PaymentSubType["Prepaid"] = 3] = "Prepaid";
PaymentSubType[PaymentSubType["Postpaid"] = 4] = "Postpaid";
PaymentSubType[PaymentSubType["Variable"] = 5] = "Variable";
PaymentSubType[PaymentSubType["Fixed"] = 6] = "Fixed";
PaymentSubType[PaymentSubType["Swap"] = 7] = "Swap";
PaymentSubType[PaymentSubType["Conditional"] = 8] = "Conditional";
PaymentSubType[PaymentSubType["FixedRate"] = 9] = "FixedRate";
PaymentSubType[PaymentSubType["FloatingRate"] = 10] = "FloatingRate";
})(PaymentSubType || (exports.PaymentSubType = PaymentSubType = {}));
//# sourceMappingURL=PaymentSubType.js.map