fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
21 lines (20 loc) • 702 B
TypeScript
/**
* Indicates the status of a report.
* - Tag: 3113
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const ReportStatus: Readonly<{
/** Received, not yet processed */
readonly ReceivedNotYetProcessed: 0;
/** Accepted */
readonly Accepted: 1;
/** Rejected */
readonly Rejected: 2;
/** Accepted with errors
This value applies to report responses containing a list of entries having an individual status that may or may not lead to a rejection of the entire report, e.g. MarketDataAck(35=EQ). */
readonly AcceptedWithErrors: 3;
}>;
export type ReportStatus = (typeof ReportStatus)[keyof typeof ReportStatus];