UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser

31 lines (30 loc) 661 B
/** * The broad asset category for assessing risk exposure. * - Tag: 1938 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const AssetClass: Readonly<{ /** Interest rate */ readonly InterestRate: 1; /** Currency */ readonly Currency: 2; /** Credit */ readonly Credit: 3; /** Equity */ readonly Equity: 4; /** Commodity */ readonly Commodity: 5; /** Other */ readonly Other: 6; /** Cash */ readonly Cash: 7; /** Debt */ readonly Debt: 8; readonly Fund: 9; /** Loan facility */ readonly LoanFacility: 10; readonly Index: 11; }>;