DayAndTimeAssignedTargetingOptionDetails
import type { DayAndTimeAssignedTargetingOptionDetails } from "https://googleapis.deno.dev/v1/displayvideo:v4.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).