@sotatech/node-fixjs
Version:
FIX Protocol Parser for Node.js
13 lines (12 loc) • 401 B
TypeScript
/**
* Indicates whether this message is the last in a sequence of messages for those messages that support fragmentation, such as Allocation Instruction, Mass Quote, Security List, Derivative Security List
* tag: 893
* @readonly
* @enum {string} (Boolean)
*/
export declare enum LastFragment {
/** Not Last Message */
NotLastMessage = "N",
/** Last Message */
LastMessage = "Y"
}