Interface ScheduleTime

interface ScheduleTime {
    from: string;
    fromTime?: string;
    timezone?: string;
    to?: string;
    toTime?: string;
    type?: string;
    weekDays?: string[];
}

Properties

from: string
fromTime?: string
timezone?: string
to?: string
toTime?: string
type?: string
weekDays?: string[]