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

DayAndTimeAssignedTargetingOptionDetails

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

Representation of a segment of time defined on a specific day of the week and with a start and end time. The time represented by start_hour must be before the time represented by end_hour.

interface DayAndTimeAssignedTargetingOptionDetails {
dayOfWeek?:
| "DAY_OF_WEEK_UNSPECIFIED"
| "MONDAY"
| "TUESDAY"
| "WEDNESDAY"
| "THURSDAY"
| "FRIDAY"
| "SATURDAY"
| "SUNDAY";
endHour?: number;
startHour?: 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. The day of the week for this day and time targeting setting.

§
endHour?: number
[src]

Required. The end hour for day and time targeting. Must be between 1 (1 hour after start of day) and 24 (end of day).

§
startHour?: number
[src]

Required. The start hour for day and time targeting. Must be between 0 (start of day) and 23 (1 hour before end of day).

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

Required. The mechanism used to determine which timezone to use for this day and time targeting setting.