UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser

18 lines (17 loc) 585 B
/** * Specifies whether a party to a swap is using an exception to a clearing requirement. In the US, one such clearing requirement is CFTC's rule pursuant to CEA Section 2(h)(1). * - Tag: 1932 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const ClearingRequirementException: Readonly<{ /** No exception */ readonly NoException: 0; readonly Exception: 1; readonly EndUserException: 2; readonly InterAffiliateException: 3; readonly TreasuryAffiliateException: 4; readonly CooperativeException: 5; }>;