fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
15 lines (14 loc) • 444 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';
}>;