import type { Recurrence } from './Recurrence'; /** * @type Schedule: Document representing a time schedule for slots. * * @property endDate: The date to end of validity. ISO8601 date time format: yyyy-MM-dd\'T\'HH:mm:ssZ. * * @property recurrence: The recurrence of the schedule by day of week and time of day. Not all schedules support a recurrence. * * @property startDate: The date to start validity. ISO8601 date time format: yyyy-MM-dd\'T\'HH:mm:ssZ. * */ export type Schedule = { endDate: string; recurrence?: Recurrence; startDate: string; } & { [key: string]: any; };