UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

18 lines (17 loc) 510 B
/** * Identifies the type of Confirmation message being sent. * - Tag: 773 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const ConfirmType: Readonly<{ /** Status */ readonly Status: 1; /** Confirmation */ readonly Confirmation: 2; /** Confirmation Request Rejected (reason can be stated in Text (58) field) */ readonly ConfirmationRequestRejected: 3; }>; export type ConfirmType = (typeof ConfirmType)[keyof typeof ConfirmType];