@sotatech/node-fixjs
Version:
FIX Protocol Parser for Node.js
13 lines (12 loc) • 395 B
TypeScript
/**
* Indicates whether or not the halt was due to Common Stock trading being halted.
* tag: 328
* @readonly
* @enum {string} (Boolean)
*/
export declare enum InViewOfCommon {
/** Halt was not related to a halt of the common stock */
HaltWasNotRelatedToAHaltOfTheCommonStock = "N",
/** Halt was due to common stock being halted */
HaltWasDueToCommonStockBeingHalted = "Y"
}