@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 (22 loc) • 689 B
TypeScript
export declare enum SessionRejectReason {
InvalidTagNumber = 0,
RequiredTagMissing = 1,
TagNotDefinedForThisMessageType = 2,
UndefinedTag = 3,
TagSpecifiedWithoutAValue = 4,
ValueIsIncorrect = 5,
IncorrectDataFormatForValue = 6,
DecryptionProblem = 7,
SignatureProblem = 8,
CompIDProblem = 9,
SendingTimeAccuracyProblem = 10,
InvalidMsgType = 11,
XMLValidationError = 12,
TagAppearsMoreThanOnce = 13,
TagSpecifiedOutOfRequiredOrder = 14,
RepeatingGroupFieldsOutOfOrder = 15,
IncorrectNumInGroupCountForRepeatingGroup = 16,
NonDataValueIncludesFieldDelimiter = 17,
InvalidUnsupportedApplVer = 18,
Other = 99
}