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

DayAndTime

import type { DayAndTime } from "https://googleapis.deno.dev/v1/displayvideo:v3.ts";

Representation of time defined by day of the week and hour of the day.

interface DayAndTime {
dayOfWeek?:
| "DAY_OF_WEEK_UNSPECIFIED"
| "MONDAY"
| "TUESDAY"
| "WEDNESDAY"
| "THURSDAY"
| "FRIDAY"
| "SATURDAY"
| "SUNDAY";
hourOfDay?: number;
timeZoneResolution?: "TIME_ZONE_RESOLUTION_UNSPECIFIED" | "TIME_ZONE_RESOLUTION_END_USER" | "TIME_ZONE_RESOLUTION_ADVERTISER";
}

§Properties

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

Required. Day of the week.

§
hourOfDay?: number
[src]

Required. Hour of the day.

§
timeZoneResolution?: "TIME_ZONE_RESOLUTION_UNSPECIFIED" | "TIME_ZONE_RESOLUTION_END_USER" | "TIME_ZONE_RESOLUTION_ADVERTISER"
[src]

Required. The mechanism used to determine the relevant timezone.