fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
17 lines (16 loc) • 393 B
TypeScript
/**
* 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;
}>;