fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
15 lines (14 loc) • 478 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
* - FIX Specification type: Boolean
* - Mapped type: string
* @readonly
* @public
*/
export declare const LastFragment: Readonly<{
/** Not Last Message */
readonly NotLastMessage: 'N';
/** Last Message */
readonly LastMessage: 'Y';
}>;