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

DoubleClickBidManager

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

DoubleClick Bid Manager API allows users to manage and create campaigns and reports.

class DoubleClickBidManager {
constructor(client?: CredentialsClient, baseUrl?: string);
async queriesCreate(req: Query): Promise<Query>;
async queriesDelete(queryId: bigint): Promise<void>;
async queriesGet(queryId: bigint): Promise<Query>;
async queriesList(opts?: QueriesListOptions): Promise<ListQueriesResponse>;
async queriesReportsGet(queryId: bigint, reportId: bigint): Promise<Report>;
async queriesReportsList(queryId: bigint, opts?: QueriesReportsListOptions): Promise<ListReportsResponse>;
async queriesRun(
queryId: bigint,
): Promise<Report>;
}

§Constructors

§
new DoubleClickBidManager(client?: CredentialsClient, baseUrl?: string)
[src]

§Methods

§
queriesCreate(req: Query): Promise<Query>
[src]

Creates a query.

§
queriesDelete(queryId: bigint): Promise<void>
[src]

Deletes a query as well as the associated reports.

@param queryId

Required. ID of query to delete.

§
queriesGet(queryId: bigint): Promise<Query>
[src]

Retrieves a query.

@param queryId

Required. ID of query to retrieve.

§
queriesList(opts?: QueriesListOptions): Promise<ListQueriesResponse>
[src]

Lists queries created by the current user.

§
queriesReportsGet(queryId: bigint, reportId: bigint): Promise<Report>
[src]

Retrieves a report.

@param queryId

Required. ID of the query the report is associated with.

@param reportId

Required. ID of the report to retrieve.

§
queriesReportsList(queryId: bigint, opts?: QueriesReportsListOptions): Promise<ListReportsResponse>
[src]

Lists reports associated with a query.

@param queryId

Required. ID of the query with which the reports are associated.

§
queriesRun(queryId: bigint, req: RunQueryRequest, opts?: QueriesRunOptions): Promise<Report>
[src]

Runs a stored query to generate a report.

@param queryId

Required. ID of query to run.