fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
22 lines (21 loc) • 567 B
TypeScript
/**
* Status of Position Maintenance Request
* - Tag: 722
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const PosMaintStatus: Readonly<{
/** Accepted */
readonly Accepted: 0;
/** Accepted With Warnings */
readonly AcceptedWithWarnings: 1;
/** Rejected */
readonly Rejected: 2;
/** Completed */
readonly Completed: 3;
/** Completed With Warnings */
readonly CompletedWithWarnings: 4;
}>;
export type PosMaintStatus = (typeof PosMaintStatus)[keyof typeof PosMaintStatus];