fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
26 lines (25 loc) • 737 B
TypeScript
/**
* 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';
}>;