fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
16 lines (15 loc) • 526 B
TypeScript
/**
* Indicates whether or not the halt was due to the Related Security being halted.
* - Tag: 329
* - FIX Specification type: Boolean
* - Mapped type: string
* @readonly
* @public
*/
export declare const DueToRelated: Readonly<{
/** Halt was not related to a halt of the related security */
readonly NotRelatedToSecurityHalt: "N";
/** Halt was due to related security being halted */
readonly RelatedToSecurityHalt: "Y";
}>;
export type DueToRelated = (typeof DueToRelated)[keyof typeof DueToRelated];