UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser

17 lines (16 loc) 381 B
/** * 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; }>;