UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

18 lines (17 loc) 476 B
/** * The reason for updating the RefOrdID * - Tag: 1431 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const RefOrdIDReason: Readonly<{ /** GTC from previous day */ readonly GTCFromPreviousDay: 0; /** Partial Fill Remaining */ readonly PartialFillRemaining: 1; /** Order Changed */ readonly OrderChanged: 2; }>; export type RefOrdIDReason = (typeof RefOrdIDReason)[keyof typeof RefOrdIDReason];