@sotatech/node-fixjs
Version:
FIX Protocol Parser for Node.js
21 lines (20 loc) • 375 B
TypeScript
/**
* Specifies the commodity delivery flow type.
* tag: 41049
* @readonly
* @enum {number} (int)
*/
export declare enum DeliveryScheduleSettlFlowType {
/** All times */
AllTimes = 0,
/** On peak */
OnPeak = 1,
/** Off peak */
OffPeak = 2,
/** Base */
Base = 3,
/** Block hours */
BlockHours = 4,
/** Other */
Other = 5
}