UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser

17 lines (16 loc) 384 B
/** * Status of party detail definition for one party. * - Tag: 1879 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const PartyDetailDefinitionStatus: Readonly<{ /** Accepted */ readonly Accepted: 0; /** Accepted with changes */ readonly AcceptedWithChanges: 1; /** Rejected */ readonly Rejected: 2; }>;