UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

16 lines (15 loc) 392 B
/** * Status of risk limit report. * - Tag: 2316 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const RiskLimitReportStatus: Readonly<{ /** Accepted */ readonly Accepted: 0; /** Rejected */ readonly Rejected: 1; }>; export type RiskLimitReportStatus = (typeof RiskLimitReportStatus)[keyof typeof RiskLimitReportStatus];