fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
36 lines (35 loc) • 931 B
TypeScript
/**
* The type of reference price underlier.
* - Tag: 41097
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const MarketDisruptionFallbackUnderlierType: Readonly<{
/** Basket */
readonly Basket: 0;
/** Bond */
readonly Bond: 1;
/** Cash */
readonly Cash: 2;
/** Commodity */
readonly Commodity: 3;
/** Convertible bond */
readonly ConvertibleBond: 4;
/** Equity */
readonly Equity: 5;
/** Exchange traded fund */
readonly ExchangeTradedFund: 6;
/** Future */
readonly Future: 7;
/** Index */
readonly Index: 8;
/** Loan */
readonly Loan: 9;
/** Mortgage */
readonly Mortgage: 10;
/** Mutual fund */
readonly MutualFund: 11;
}>;
export type MarketDisruptionFallbackUnderlierType = (typeof MarketDisruptionFallbackUnderlierType)[keyof typeof MarketDisruptionFallbackUnderlierType];