UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

21 lines (20 loc) 574 B
/** * Type of reference to another News(35=B) message item. * - Tag: 1477 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const NewsRefType: Readonly<{ /** Replacement */ readonly Replacement: 0; /** Other language */ readonly OtherLanguage: 1; /** Complimentary */ readonly Complimentary: 2; /** Withdrawal Withdrawal of the referenced news item, e.g. to correct an error. */ readonly Withdrawal: 3; }>; export type NewsRefType = (typeof NewsRefType)[keyof typeof NewsRefType];