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

QuerySchedule

import type { QuerySchedule } from "https://googleapis.deno.dev/v1/doubleclickbidmanager:v2.ts";

Information on when and how frequently to run a query.

interface QuerySchedule {
endDate?: Date;
frequency?:
| "FREQUENCY_UNSPECIFIED"
| "ONE_TIME"
| "DAILY"
| "WEEKLY"
| "SEMI_MONTHLY"
| "MONTHLY"
| "QUARTERLY"
| "YEARLY";
nextRunTimezoneCode?: string;
startDate?: Date;
}

§Properties

§
endDate?: Date
[src]

Date to periodically run the query until. Not applicable to ONE_TIME frequency.

§
frequency?: "FREQUENCY_UNSPECIFIED" | "ONE_TIME" | "DAILY" | "WEEKLY" | "SEMI_MONTHLY" | "MONTHLY" | "QUARTERLY" | "YEARLY"
[src]

How often the query is run.

§
nextRunTimezoneCode?: string
[src]

Canonical timezone code for report generation time. Defaults to America/New_York.

§
startDate?: Date
[src]

When to start running the query. Not applicable to ONE_TIME frequency.