fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
18 lines (17 loc) • 461 B
TypeScript
/**
* Specifies the type of action to take or was taken for a given party.
* - Tag: 2329
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const PartyActionType: Readonly<{
/** Suspend */
readonly Suspend: 0;
/** Halt trading */
readonly HaltTrading: 1;
/** Reinstate */
readonly Reinstate: 2;
}>;
export type PartyActionType = (typeof PartyActionType)[keyof typeof PartyActionType];