QuerySchedule
import type { QuerySchedule } from "https://googleapis.deno.dev/v1/doubleclickbidmanager:v2.ts";
Settings 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
§
frequency?: "FREQUENCY_UNSPECIFIED" | "ONE_TIME" | "DAILY" | "WEEKLY" | "SEMI_MONTHLY" | "MONTHLY" | "QUARTERLY" | "YEARLY"
[src]How frequently to run the query. If set to ONE_TIME
, the query will only
be run when queries.run is called.