fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
16 lines (15 loc) • 555 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";
}>;
export type LastFragment = (typeof LastFragment)[keyof typeof LastFragment];