fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
18 lines (17 loc) • 965 B
TypeScript
/**
* Specifies the format of the delivery start and end time values.
* - Tag: 41057
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const DeliveryScheduleSettlTimeType: Readonly<{
/** Hour of the day
Applicable for electricity contracts. Time value is expressed as an integer hour of the day (1-24). The delivery start/end hour is specified as the end of the included hour. For example, a start hour of "4" begins at 3 a.m.; an end hour of "20" ends at 8 p.m.; a start hour of "1" and end hour of "24" indicates midnight to midnight delivery. */
readonly Hour: 0;
/** HH:MM time format
Applicable for gas contracts. Time value is expressed using a 24-hour time format. For example, a time value of "13:30" is 1:30 p.m. */
readonly Timestamp: 1;
}>;
export type DeliveryScheduleSettlTimeType = (typeof DeliveryScheduleSettlTimeType)[keyof typeof DeliveryScheduleSettlTimeType];