UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser

21 lines (20 loc) 475 B
/** * Category of news message. * - Tag: 1473 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const NewsCategory: Readonly<{ /** Company News */ readonly CompanyNews: 0; /** Marketplace News */ readonly MarketplaceNews: 1; /** Financial Market News */ readonly FinancialMarketNews: 2; /** Technical News */ readonly TechnicalNews: 3; /** Other News */ readonly OtherNews: 99; }>;