fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
16 lines (15 loc) • 406 B
TypeScript
/**
* Indication of how a trade was verified.
* - Tag: 1931
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const VerificationMethod: Readonly<{
/** Non-electronic */
readonly NonElectronic: 0;
/** Electronic */
readonly Electronic: 1;
}>;
export type VerificationMethod = (typeof VerificationMethod)[keyof typeof VerificationMethod];