@sotatech/node-fixjs
Version:
FIX Protocol Parser for Node.js
13 lines (12 loc) • 347 B
TypeScript
/**
* Indicates whether the broker is to locate the stock in conjunction with a short sell order.
* tag: 114
* @readonly
* @enum {string} (Boolean)
*/
export declare enum LocateReqd {
/** Indicates the broker is not required to locate */
No = "N",
/** Indicates the broker is responsible for locating the stock */
Yes = "Y"
}