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

GoogleAdsSearchads360V0Common__AdScheduleInfo

import type { GoogleAdsSearchads360V0Common__AdScheduleInfo } from "https://googleapis.deno.dev/v1/searchads360:v0.ts";

Represents an AdSchedule criterion. AdSchedule is specified as the day of the week and a time interval within which ads will be shown. No more than six AdSchedules can be added for the same day.

interface GoogleAdsSearchads360V0Common__AdScheduleInfo {
dayOfWeek?:
| "UNSPECIFIED"
| "UNKNOWN"
| "MONDAY"
| "TUESDAY"
| "WEDNESDAY"
| "THURSDAY"
| "FRIDAY"
| "SATURDAY"
| "SUNDAY";
endHour?: number;
endMinute?:
| "UNSPECIFIED"
| "UNKNOWN"
| "ZERO"
| "FIFTEEN"
| "THIRTY"
| "FORTY_FIVE";
startHour?: number;
startMinute?:
| "UNSPECIFIED"
| "UNKNOWN"
| "ZERO"
| "FIFTEEN"
| "THIRTY"
| "FORTY_FIVE";
}

§Properties

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

Day of the week the schedule applies to. This field is required for CREATE operations and is prohibited on UPDATE operations.

§
endHour?: number
[src]

Ending hour in 24 hour time; 24 signifies end of the day. This field must be between 0 and 24, inclusive. This field is required for CREATE operations and is prohibited on UPDATE operations.

§
endMinute?: "UNSPECIFIED" | "UNKNOWN" | "ZERO" | "FIFTEEN" | "THIRTY" | "FORTY_FIVE"
[src]

Minutes after the end hour at which this schedule ends. The schedule is exclusive of the end minute. This field is required for CREATE operations and is prohibited on UPDATE operations.

§
startHour?: number
[src]

Starting hour in 24 hour time. This field must be between 0 and 23, inclusive. This field is required for CREATE operations and is prohibited on UPDATE operations.

§
startMinute?: "UNSPECIFIED" | "UNKNOWN" | "ZERO" | "FIFTEEN" | "THIRTY" | "FORTY_FIVE"
[src]

Minutes after the start hour at which this schedule starts. This field is required for CREATE operations and is prohibited on UPDATE operations.