UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

18 lines (17 loc) 470 B
/** * Identifies the message transaction type. * - Tag: 3020 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const AlgoCertificateReportTransType: Readonly<{ /** New */ readonly New: 0; /** Cancel */ readonly Cancel: 1; /** Replace */ readonly Replace: 2; }>; export type AlgoCertificateReportTransType = (typeof AlgoCertificateReportTransType)[keyof typeof AlgoCertificateReportTransType];