fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
18 lines (17 loc) • 434 B
TypeScript
/**
* Status of Request for Positions
* - Tag: 729
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const PosReqStatus: Readonly<{
/** Completed */
readonly Completed: 0;
/** Completed With Warnings */
readonly CompletedWithWarnings: 1;
/** Rejected */
readonly Rejected: 2;
}>;
export type PosReqStatus = (typeof PosReqStatus)[keyof typeof PosReqStatus];