UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser

21 lines (20 loc) 484 B
/** * 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; }>;