UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

16 lines (15 loc) 367 B
/** * Reason for deletion. * - Tag: 285 * - FIX Specification type: char * - Mapped type: string * @readonly * @public */ export declare const DeleteReason: Readonly<{ /** Cancellation / Trade Bust */ readonly Cancellation: "0"; /** Error */ readonly Error: "1"; }>; export type DeleteReason = (typeof DeleteReason)[keyof typeof DeleteReason];