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

WeeklyTimeInterval

import type { WeeklyTimeInterval } from "https://googleapis.deno.dev/v1/vmwareengine:v1.ts";

Represents a time interval, spanning across days of the week. Until local timezones are supported, this interval is in UTC.

interface WeeklyTimeInterval {
readonly endDay?:
| "DAY_OF_WEEK_UNSPECIFIED"
| "MONDAY"
| "TUESDAY"
| "WEDNESDAY"
| "THURSDAY"
| "FRIDAY"
| "SATURDAY"
| "SUNDAY";
readonly endTime?: TimeOfDay;
readonly startDay?:
| "DAY_OF_WEEK_UNSPECIFIED"
| "MONDAY"
| "TUESDAY"
| "WEDNESDAY"
| "THURSDAY"
| "FRIDAY"
| "SATURDAY"
| "SUNDAY";
readonly startTime?: TimeOfDay;
}

§Properties

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

Output only. The day on which the interval ends. Can be same as start day.

§
readonly endTime?: TimeOfDay
[src]

Output only. The time on the end day at which the interval ends.

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

Output only. The day on which the interval starts.

§
readonly startTime?: TimeOfDay
[src]

Output only. The time on the start day at which the interval starts.