@sotatech/node-fixjs
Version:
FIX Protocol Parser for Node.js
13 lines (12 loc) • 374 B
TypeScript
/**
* Indicates whether or not details should be communicated to BrokerOfCredit (i.e. step-in broker).
* tag: 208
* @readonly
* @enum {string} (Boolean)
*/
export declare enum NotifyBrokerOfCredit {
/** Details should not be communicated */
DetailsShouldNotBeCommunicated = "N",
/** Details should be communicated */
DetailsShouldBeCommunicated = "Y"
}