Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

WeeklySchedule

import type { WeeklySchedule } from "https://googleapis.deno.dev/v1/contactcenteraiplatform:v1alpha1.ts";

Message representing a weekly schedule.

interface WeeklySchedule {
days?:
| "DAY_OF_WEEK_UNSPECIFIED"
| "MONDAY"
| "TUESDAY"
| "WEDNESDAY"
| "THURSDAY"
| "FRIDAY"
| "SATURDAY"
| "SUNDAY"[];
duration?: number;
endTime?: TimeOfDay;
startTime?: TimeOfDay;
}

§Properties

§
days?: "DAY_OF_WEEK_UNSPECIFIED" | "MONDAY" | "TUESDAY" | "WEDNESDAY" | "THURSDAY" | "FRIDAY" | "SATURDAY" | "SUNDAY"[]
[src]

Required. Days of the week this schedule applies to.

§
duration?: number
[src]

Optional. Duration of the schedule.

§
endTime?: TimeOfDay
[src]

Optional. Daily end time of the schedule. If end_time is before start_time, the schedule will be considered as ending on the next day.

§
startTime?: TimeOfDay
[src]

Required. Daily start time of the schedule.