Business days and hours when the destination is open for deliveries.

BusinessHours

interface BusinessHours {
    DayOfWeek?: BusinessHoursDayOfWeekEnum;
    OpenIntervals?: OpenInterval[];
}

Properties

Day of the week.

BusinessHours

OpenIntervals?: OpenInterval[]

Time window during the day when the business is open.

BusinessHours