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

BiddersPublisherConnectionsListOptions

import type { BiddersPublisherConnectionsListOptions } from "https://googleapis.deno.dev/v1/realtimebidding:v1.ts";

Additional options for realtimeBidding#biddersPublisherConnectionsList.

interface BiddersPublisherConnectionsListOptions {
filter?: string;
orderBy?: string;
pageSize?: number;
pageToken?: string;
}

§Properties

§
filter?: string
[src]

Query string to filter publisher connections. Connections can be filtered by displayName, publisherPlatform, and biddingState. If no filter is specified, all publisher connections will be returned. Example: 'displayName="Great Publisher*" AND publisherPlatform=ADMOB AND biddingState != PENDING' See https://google.aip.dev/160 for more information about filtering syntax.

§
orderBy?: string
[src]

Order specification by which results should be sorted. If no sort order is specified, the results will be returned in alphabetic order based on the publisher's publisher code. Results can be sorted by createTime. Example: 'createTime DESC'.

§
pageSize?: number
[src]

Requested page size. The server may return fewer results than requested (due to timeout constraint) even if more are available through another call. If unspecified, the server will pick an appropriate default. Acceptable values are 1 to 5000, inclusive.

§
pageToken?: string
[src]

A token identifying a page of results the server should return. Typically, this is the value of ListPublisherConnectionsResponse.nextPageToken returned from the previous call to the 'ListPublisherConnections' method.