fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
16 lines (15 loc) • 413 B
TypeScript
/**
* Data point's matching type.
* - Tag: 2782
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const MatchingDataPointIndicator: Readonly<{
/** Mandatory */
readonly Mandatory: 1;
/** Optional */
readonly Optional: 2;
}>;
export type MatchingDataPointIndicator = (typeof MatchingDataPointIndicator)[keyof typeof MatchingDataPointIndicator];