fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
16 lines (15 loc) • 625 B
TypeScript
/**
* Indicates whether holidays are included in the settlement periods. Required for electricity contracts.
* - Tag: 41050
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const DeliveryScheduleSettlHolidaysProcessingInstruction: Readonly<{
/** Do not include holidays */
readonly DoNotIncludeHolidays: 0;
/** Include holidays */
readonly IncludeHolidays: 1;
}>;
export type DeliveryScheduleSettlHolidaysProcessingInstruction = (typeof DeliveryScheduleSettlHolidaysProcessingInstruction)[keyof typeof DeliveryScheduleSettlHolidaysProcessingInstruction];