fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
15 lines (14 loc) • 376 B
TypeScript
/**
* 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';
}>;