@sotatech/node-fixjs
Version:
FIX Protocol Parser for Node.js
15 lines (14 loc) • 411 B
TypeScript
/**
* Indicates whether or not automatic booking can occur.
* tag: 589
* @readonly
* @enum {string} (char)
*/
export declare enum DayBookingInst {
/** Can trigger booking without reference to the order initiator ("auto") */
Auto = "0",
/** Speak with order initiator before booking ("speak first") */
SpeakWithOrderInitiatorBeforeBooking = "1",
/** Accumulate */
Accumulate = "2"
}