@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.
23 lines • 1.43 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PaymentType = void 0;
var PaymentType;
(function (PaymentType) {
PaymentType[PaymentType["Brokerage"] = 0] = "Brokerage";
PaymentType[PaymentType["UpfrontFee"] = 1] = "UpfrontFee";
PaymentType[PaymentType["IndependentAmountCollateral"] = 2] = "IndependentAmountCollateral";
PaymentType[PaymentType["PrincipalExchange"] = 3] = "PrincipalExchange";
PaymentType[PaymentType["NovationTermination"] = 4] = "NovationTermination";
PaymentType[PaymentType["EarlyTerminationProvision"] = 5] = "EarlyTerminationProvision";
PaymentType[PaymentType["CancelableProvision"] = 6] = "CancelableProvision";
PaymentType[PaymentType["ExtendibleProvision"] = 7] = "ExtendibleProvision";
PaymentType[PaymentType["CapRateProvision"] = 8] = "CapRateProvision";
PaymentType[PaymentType["FloorRateProvision"] = 9] = "FloorRateProvision";
PaymentType[PaymentType["OptionPremium"] = 10] = "OptionPremium";
PaymentType[PaymentType["SettlementPayment"] = 11] = "SettlementPayment";
PaymentType[PaymentType["CashSettl"] = 12] = "CashSettl";
PaymentType[PaymentType["SecurityLending"] = 13] = "SecurityLending";
PaymentType[PaymentType["Rebate"] = 14] = "Rebate";
PaymentType[PaymentType["Other"] = 99] = "Other";
})(PaymentType || (exports.PaymentType = PaymentType = {}));
//# sourceMappingURL=PaymentType.js.map