Query
import type { Query } from "https://googleapis.deno.dev/v1/doubleclickbidmanager:v2.ts";
A single query used to generate a report.
interface Query {
metadata?: QueryMetadata;
params?: Parameters;
readonly queryId?: bigint;
schedule?: QuerySchedule;
}§Properties
§
metadata?: QueryMetadata
[src]The metadata of the query.
§
params?: Parameters
[src]The parameters of the report generated by the query.
§
schedule?: QuerySchedule
[src]When and how often the query is scheduled to run. If the frequency field
is set to ONE_TIME
, the query will only run when queries.run is called.