fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
24 lines (23 loc) • 612 B
TypeScript
/**
* Specifies the commodity delivery flow type.
* - Tag: 41049
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const DeliveryScheduleSettlFlowType: Readonly<{
/** All times */
readonly AllTimes: 0;
/** On peak */
readonly OnPeak: 1;
/** Off peak */
readonly OffPeak: 2;
/** Base */
readonly Base: 3;
/** Block hours */
readonly BlockHours: 4;
/** Other */
readonly Other: 5;
}>;
export type DeliveryScheduleSettlFlowType = (typeof DeliveryScheduleSettlFlowType)[keyof typeof DeliveryScheduleSettlFlowType];