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.