The operating hour schema

OperatingHour

interface OperatingHour {
    endTime?: string;
    startTime?: string;
}

Properties

Properties

endTime?: string

The closing time, ISO 8601 formatted timestamp without date, HH:mm.

OperatingHour

startTime?: string

The opening time, ISO 8601 formatted timestamp without date, HH:mm.

OperatingHour