UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

20 lines (19 loc) 545 B
/** * Qualifier for MarginRequirementInquiry to identify a specific report. * - Tag: 1637 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const MarginReqmtInqQualifier: Readonly<{ /** Summary */ readonly Summary: 0; /** Detail */ readonly Detail: 1; /** Excess/Deficit */ readonly ExcessDeficit: 2; /** Net Position */ readonly NetPosition: 3; }>; export type MarginReqmtInqQualifier = (typeof MarginReqmtInqQualifier)[keyof typeof MarginReqmtInqQualifier];