UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

18 lines (17 loc) 485 B
/** * Indicates the status of the party identified with PartyDetailID(1691). * - Tag: 1672 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const PartyDetailStatus: Readonly<{ /** Active (default if not specified) */ readonly Active: 0; /** Suspended */ readonly Suspended: 1; /** Halted */ readonly Halted: 2; }>; export type PartyDetailStatus = (typeof PartyDetailStatus)[keyof typeof PartyDetailStatus];