UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser

17 lines (16 loc) 390 B
/** * The status of this execution acknowledgement message. * - Tag: 1036 * - FIX Specification type: char * - Mapped type: string * @readonly * @public */ export declare const ExecAckStatus: Readonly<{ /** Received, not yet processed */ readonly Received: '0'; /** Accepted */ readonly Accepted: '1'; /** Don't know / Rejected */ readonly DontKnow: '2'; }>;