UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

18 lines (17 loc) 757 B
/** * The type of identification taxonomy used to identify the security. * - Tag: 2375 * - FIX Specification type: char * - Mapped type: string * @readonly * @public */ export declare const TaxonomyType: Readonly<{ /** ISIN or Alternate instrument identifier plus CFI Identified through use of SecurityID(48) and SecurityIDSource(22) of ISIN or another standard source plus CFICode(461). */ readonly ISINOrAltInstrmtID: "I"; /** Interim Taxonomy Identified through use of AssetClass(1938) plus either Symbol(55) or SecurityID(48) and SecurityIDSource(22), and/or other additional instrument attributes. */ readonly InterimTaxonomy: "E"; }>; export type TaxonomyType = (typeof TaxonomyType)[keyof typeof TaxonomyType];