fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
18 lines (17 loc) • 464 B
TypeScript
/**
* Result of Position Maintenance Request.
* - Tag: 723
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const PosMaintResult: Readonly<{
/** Successful Completion - no warnings or errors */
readonly SuccessfulCompletion: 0;
/** Rejected */
readonly Rejected: 1;
/** Other */
readonly Other: 99;
}>;
export type PosMaintResult = (typeof PosMaintResult)[keyof typeof PosMaintResult];