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

TargetingTypesTargetingOptionsListOptions

import type { TargetingTypesTargetingOptionsListOptions } from "https://googleapis.deno.dev/v1/displayvideo:v3.ts";

Additional options for DisplayVideo#targetingTypesTargetingOptionsList.

interface TargetingTypesTargetingOptionsListOptions {
advertiserId?: bigint;
filter?: string;
orderBy?: string;
pageSize?: number;
pageToken?: string;
}

§Properties

§
advertiserId?: bigint
[src]

Required. The Advertiser this request is being made in the context of.

§
filter?: string
[src]

Allows filtering by targeting option fields. Supported syntax: * Filter expressions are made up of one or more restrictions. * Restrictions can be combined by OR logical operators. * A restriction has the form of {field} {operator} {value}. * All fields must use the EQUALS (=) operator. Supported fields: * carrierAndIspDetails.type * geoRegionDetails.geoRegionType * targetingOptionId Examples: * All GEO REGION targeting options that belong to sub type GEO_REGION_TYPE_COUNTRY or GEO_REGION_TYPE_STATE: geoRegionDetails.geoRegionType="GEO_REGION_TYPE_COUNTRY" OR geoRegionDetails.geoRegionType="GEO_REGION_TYPE_STATE" * All CARRIER AND ISP targeting options that belong to sub type CARRIER_AND_ISP_TYPE_CARRIER: carrierAndIspDetails.type="CARRIER_AND_ISP_TYPE_CARRIER" The length of this field should be no more than 500 characters. Reference our filter LIST requests guide for more information.

§
orderBy?: string
[src]

Field by which to sort the list. Acceptable values are: * targetingOptionId (default) The default sorting order is ascending. To specify descending order for a field, a suffix "desc" should be added to the field name. Example: targetingOptionId desc.

§
pageSize?: number
[src]

Requested page size. Must be between 1 and 200. If unspecified will default to 100. Returns error code INVALID_ARGUMENT if an invalid value is specified.

§
pageToken?: string
[src]

A token identifying a page of results the server should return. Typically, this is the value of next_page_token returned from the previous call to ListTargetingOptions method. If not specified, the first page of results will be returned.