fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
18 lines (17 loc) • 399 B
TypeScript
/**
* Status of this position.
* - Tag: 706
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const PosQtyStatus: Readonly<{
/** Submitted */
readonly Submitted: 0;
/** Accepted */
readonly Accepted: 1;
/** Rejected */
readonly Rejected: 2;
}>;
export type PosQtyStatus = (typeof PosQtyStatus)[keyof typeof PosQtyStatus];