fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
21 lines (20 loc) • 703 B
TypeScript
/**
* Action to be taken for the ValueCheckType(1869).
* - Tag: 1870
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const ValueCheckAction: Readonly<{
/** Do not check
Checks will not be done for the specified ValueCheckType(1869). */
readonly DoNotCheck: 0;
/** Check
Checks will be done for the specificed ValueCheckType(1869) */
readonly Check: 1;
/** Best effort
The market may or may not check the specified ValueCheckType(1869) depending on availability of reference data. */
readonly BestEffort: 2;
}>;
export type ValueCheckAction = (typeof ValueCheckAction)[keyof typeof ValueCheckAction];