UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

18 lines (17 loc) 559 B
/** * The reason for rejecting the PartyRiskLimitsReport(35=CM) or PartyRiskLimitsUpdateReport(35=CR). * - Tag: 2317 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const RiskLimitReportRejectReason: Readonly<{ /** Unknown RiskLimitReportID(1667) */ readonly UnkRiskLmtRprtID: 0; /** Unknown party */ readonly UnkPty: 1; /** Other */ readonly Other: 99; }>; export type RiskLimitReportRejectReason = (typeof RiskLimitReportRejectReason)[keyof typeof RiskLimitReportRejectReason];