fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
22 lines (21 loc) • 571 B
TypeScript
/**
* Identifies class or source of the Currency(15) value.
* - Tag: 2897
* - FIX Specification type: String
* - Mapped type: string
* @readonly
* @public
*/
export declare const CurrencyCodeSource: Readonly<{
/** CUSIP */
readonly CUSIP: '1';
/** SEDOL */
readonly SEDOL: '2';
/** ISIN */
readonly ISINNumber: '4';
/** ISO Currency Code (ISO 4217) */
readonly ISOCurrencyCode: '6';
readonly FinancialInstrumentGlobalIdentifier: 'S';
/** Digital Token Identifier (ISO 24165) */
readonly DigitalTokenIdentifier: 'Y';
}>;