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

CampaignsListOptions

import type { CampaignsListOptions } from "https://googleapis.deno.dev/v1/dfareporting:v4.ts";

Additional options for dfareporting#campaignsList.

interface CampaignsListOptions {
advertiserGroupIds?: bigint;
advertiserIds?: bigint;
archived?: boolean;
atLeastOneOptimizationActivity?: boolean;
excludedIds?: bigint;
ids?: bigint;
maxResults?: number;
overriddenEventTagId?: bigint;
pageToken?: string;
searchString?: string;
sortField?: "ID" | "NAME";
sortOrder?: "ASCENDING" | "DESCENDING";
subaccountId?: bigint;
}

§Properties

§
advertiserGroupIds?: bigint
[src]

Select only campaigns whose advertisers belong to these advertiser groups.

§
advertiserIds?: bigint
[src]

Select only campaigns that belong to these advertisers.

§
archived?: boolean
[src]

Select only archived campaigns. Don't set this field to select both archived and non-archived campaigns.

§
atLeastOneOptimizationActivity?: boolean
[src]

Select only campaigns that have at least one optimization activity.

§
excludedIds?: bigint
[src]

Exclude campaigns with these IDs.

§
ids?: bigint
[src]

Select only campaigns with these IDs.

§
maxResults?: number
[src]

Maximum number of results to return.

§
overriddenEventTagId?: bigint
[src]

Select only campaigns that have overridden this event tag ID.

§
pageToken?: string
[src]

Value of the nextPageToken from the previous result page.

§
searchString?: string
[src]

Allows searching for campaigns by name or ID. Wildcards () are allowed. For example, "campaign2015" will return campaigns with names like "campaign June 2015", "campaign April 2015", or simply "campaign 2015". Most of the searches also add wildcards implicitly at the start and the end of the search string. For example, a search string of "campaign" will match campaigns with name "my campaign", "campaign 2015", or simply "campaign".

§
sortField?: "ID" | "NAME"
[src]

Field by which to sort the list.

§
sortOrder?: "ASCENDING" | "DESCENDING"
[src]

Order of sorted results.

§
subaccountId?: bigint
[src]

Select only campaigns that belong to this subaccount.