UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

16 lines (15 loc) 477 B
/** * Identifies the type of request that a Cancel Reject is in response to. * - Tag: 434 * - FIX Specification type: char * - Mapped type: string * @readonly * @public */ export declare const CxlRejResponseTo: Readonly<{ /** Order cancel request */ readonly OrderCancelRequest: "1"; /** Order cancel/replace request */ readonly OrderCancelReplaceRequest: "2"; }>; export type CxlRejResponseTo = (typeof CxlRejResponseTo)[keyof typeof CxlRejResponseTo];