fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
16 lines (15 loc) • 533 B
TypeScript
/**
* Indicates whether this message is the last report message in response to a request message, e.g. OrderMassStatusRequest(35=AF), TradeCaptureReportRequest(35=AD).
* - Tag: 912
* - FIX Specification type: Boolean
* - Mapped type: string
* @readonly
* @public
*/
export declare const LastRptRequested: Readonly<{
/** Not last message */
readonly NotLastMessage: "N";
/** Last message */
readonly LastMessage: "Y";
}>;
export type LastRptRequested = (typeof LastRptRequested)[keyof typeof LastRptRequested];