UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

27 lines (26 loc) 817 B
/** * Identifies Settlement Depository or Country Code (ISITC spec) * - Tag: 166 * - FIX Specification type: String * - FIX Specification version: FIX42 * - Mapped type: string * @readonly * @public */ export declare const SettlLocation: Readonly<{ /** CEDEL */ readonly CEDEL: "CED"; /** Depository Trust Company */ readonly DepositoryTrustCompany: "DTC"; /** Euroclear */ readonly EuroClear: "EUR"; /** Federal Book Entry */ readonly FederalBookEntry: "FED"; /** Local Market Settle Location */ readonly LocalMarketSettleLocation: "ISO Country Code"; /** Physical */ readonly Physical: "PNY"; /** Participant Trust Company */ readonly ParticipantTrustCompany: "PTC"; }>; export type SettlLocation = (typeof SettlLocation)[keyof typeof SettlLocation];