UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser

17 lines (16 loc) 371 B
/** * Used to indicate the status of the trade submission (not the trade report) * - Tag: 1523 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const TrdAckStatus: Readonly<{ /** Accepted */ readonly Accepted: 0; /** Rejected */ readonly Rejected: 1; /** Received */ readonly Received: 2; }>;