fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
15 lines (14 loc) • 339 B
TypeScript
/**
* Instructs when to refresh DisplayQty (1138).
* - Tag: 1083
* - FIX Specification type: char
* - Mapped type: string
* @readonly
* @public
*/
export declare const DisplayWhen: Readonly<{
/** Immediate (after each fill) */
readonly Immediate: '1';
/** Exhaust (when DisplayQty = 0) */
readonly Exhaust: '2';
}>;