fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
19 lines (18 loc) • 519 B
TypeScript
/**
* Defines what value to use in DisplayQty (1138). If not specified the default DisplayMethod is "1"
* - Tag: 1084
* - FIX Specification type: char
* - Mapped type: string
* @readonly
* @public
*/
export declare const DisplayMethod: Readonly<{
/** Initial (use original DisplayQty) */
readonly Initial: '1';
/** New (use RefreshQty) */
readonly New: '2';
/** Random (randomize value) */
readonly Random: '3';
/** Undisclosed (invisible order) */
readonly Undisclosed: '4';
}>;