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

PlacementGroupsListOptions

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

Additional options for dfareporting#placementGroupsList.

interface PlacementGroupsListOptions {
activeStatus?:
| "PLACEMENT_STATUS_UNKNOWN"
| "PLACEMENT_STATUS_ACTIVE"
| "PLACEMENT_STATUS_INACTIVE"
| "PLACEMENT_STATUS_ARCHIVED"
| "PLACEMENT_STATUS_PERMANENTLY_ARCHIVED";
advertiserIds?: bigint;
campaignIds?: bigint;
contentCategoryIds?: bigint;
directorySiteIds?: bigint;
ids?: bigint;
maxEndDate?: string;
maxResults?: number;
maxStartDate?: string;
minEndDate?: string;
minStartDate?: string;
pageToken?: string;
placementGroupType?: "PLACEMENT_PACKAGE" | "PLACEMENT_ROADBLOCK";
placementStrategyIds?: bigint;
pricingTypes?:
| "PRICING_TYPE_CPM"
| "PRICING_TYPE_CPC"
| "PRICING_TYPE_CPA"
| "PRICING_TYPE_FLAT_RATE_IMPRESSIONS"
| "PRICING_TYPE_FLAT_RATE_CLICKS"
| "PRICING_TYPE_CPM_ACTIVEVIEW";
searchString?: string;
siteIds?: bigint;
sortField?: "ID" | "NAME";
sortOrder?: "ASCENDING" | "DESCENDING";
}

§Properties

§
activeStatus?: "PLACEMENT_STATUS_UNKNOWN" | "PLACEMENT_STATUS_ACTIVE" | "PLACEMENT_STATUS_INACTIVE" | "PLACEMENT_STATUS_ARCHIVED" | "PLACEMENT_STATUS_PERMANENTLY_ARCHIVED"
[src]

Select only placements with these active statuses.

§
advertiserIds?: bigint
[src]

Select only placement groups that belong to these advertisers.

§
campaignIds?: bigint
[src]

Select only placement groups that belong to these campaigns.

§
contentCategoryIds?: bigint
[src]

Select only placement groups that are associated with these content categories.

§
directorySiteIds?: bigint
[src]

Select only placement groups that are associated with these directory sites.

§
ids?: bigint
[src]

Select only placement groups with these IDs.

§
maxEndDate?: string
[src]

Select only placements or placement groups whose end date is on or before the specified maxEndDate. The date should be formatted as "yyyy-MM-dd".

§
maxResults?: number
[src]

Maximum number of results to return.

§
maxStartDate?: string
[src]

Select only placements or placement groups whose start date is on or before the specified maxStartDate. The date should be formatted as "yyyy-MM-dd".

§
minEndDate?: string
[src]

Select only placements or placement groups whose end date is on or after the specified minEndDate. The date should be formatted as "yyyy-MM-dd".

§
minStartDate?: string
[src]

Select only placements or placement groups whose start date is on or after the specified minStartDate. The date should be formatted as "yyyy-MM-dd".

§
pageToken?: string
[src]

Value of the nextPageToken from the previous result page.

§
placementGroupType?: "PLACEMENT_PACKAGE" | "PLACEMENT_ROADBLOCK"
[src]

Select only placement groups belonging with this group type. A package is a simple group of placements that acts as a single pricing point for a group of tags. A roadblock is a group of placements that not only acts as a single pricing point but also assumes that all the tags in it will be served at the same time. A roadblock requires one of its assigned placements to be marked as primary for reporting.

§
placementStrategyIds?: bigint
[src]

Select only placement groups that are associated with these placement strategies.

§
pricingTypes?: "PRICING_TYPE_CPM" | "PRICING_TYPE_CPC" | "PRICING_TYPE_CPA" | "PRICING_TYPE_FLAT_RATE_IMPRESSIONS" | "PRICING_TYPE_FLAT_RATE_CLICKS" | "PRICING_TYPE_CPM_ACTIVEVIEW"
[src]

Select only placement groups with these pricing types.

§
searchString?: string
[src]

Allows searching for placement groups by name or ID. Wildcards () are allowed. For example, "placement2015" will return placement groups with names like "placement group June 2015", "placement group May 2015", or simply "placements 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 "placementgroup" will match placement groups with name "my placementgroup", "placementgroup 2015", or simply "placementgroup".

§
siteIds?: bigint
[src]

Select only placement groups that are associated with these sites.

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

Field by which to sort the list.

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

Order of sorted results.