/** * Shell EVLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema'; import { OpeningHoursObjectWeekDayEnum } from './openingHoursObjectWeekDayEnum'; export interface OpeningHoursObject { weekDay?: OpeningHoursObjectWeekDayEnum; /** Hour in 24h local time when the location opens. */ startTime?: string; /** Hour in 24h local time when the location closes. */ endTime?: string; } export declare const openingHoursObjectSchema: Schema;