UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

16 lines (15 loc) 507 B
/** * Indicates whether a given timestamp was manually captured. * - Tag: 2839 * - FIX Specification type: Boolean * - Mapped type: string * @readonly * @public */ export declare const TrdRegTimestampManualIndicator: Readonly<{ /** Not manually captured */ readonly NotManuallyCaptured: "N"; /** Manually captured */ readonly ManuallyCaptured: "Y"; }>; export type TrdRegTimestampManualIndicator = (typeof TrdRegTimestampManualIndicator)[keyof typeof TrdRegTimestampManualIndicator];