UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

20 lines (19 loc) 517 B
/** * Transaction Type - required except where SettlInstMode is 5=Reject SSI request * - Tag: 1162 * - FIX Specification type: char * - Mapped type: string * @readonly * @public */ export declare const SettlObligTransType: Readonly<{ /** Cancel */ readonly Cancel: "C"; /** New */ readonly New: "N"; /** Replace */ readonly Replace: "R"; /** Restate */ readonly Restate: "T"; }>; export type SettlObligTransType = (typeof SettlObligTransType)[keyof typeof SettlObligTransType];