fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
32 lines (31 loc) • 795 B
TypeScript
/**
* Specifies the day or group of days for delivery.
* - Tag: 41052
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const DeliveryScheduleSettlDay: Readonly<{
/** Monday */
readonly Monday: 1;
/** Tuesday */
readonly Tuesday: 2;
/** Wednesday */
readonly Wednesday: 3;
/** Thursday */
readonly Thursday: 4;
/** Friday */
readonly Friday: 5;
/** Saturday */
readonly Saturday: 6;
/** Sunday */
readonly Sunday: 7;
/** All weekdays */
readonly AllWeekdays: 8;
/** All days */
readonly AllDays: 9;
/** All weekends */
readonly AllWeekends: 10;
}>;
export type DeliveryScheduleSettlDay = (typeof DeliveryScheduleSettlDay)[keyof typeof DeliveryScheduleSettlDay];