UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser

15 lines (14 loc) 568 B
/** * Indicate whether a trade is eligible to be reported to more than one regulatory jurisdictions, e.g. due to overlapping reporting rules that require reporting to different jurisdictions. * - Tag: 2963 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const MultiJurisdictionReportingIndicator: Readonly<{ /** Trade not eligible for multi-jurisdiction reporting */ readonly NotMultiJrsdctnEligible: 0; /** Trade eligible for multi-jurisdiction reporting */ readonly MultiJrsdctnEligible: 1; }>;