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

QueriesListOptions

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

Additional options for DoubleClickBidManager#queriesList.

interface QueriesListOptions {
orderBy?: string;
pageSize?: number;
pageToken?: string;
}

§Properties

§
orderBy?: string
[src]

Field to sort the list by. Accepts the following values: * queryId (default) * metadata.title The default sorting order is ascending. To specify descending order for a field, add the suffix desc to the field name. For example, queryId desc.

§
pageSize?: number
[src]

Maximum number of results per page. Must be between 1 and 100. Defaults to 100 if unspecified.

§
pageToken?: string
[src]

A token identifying which page of results the server should return. Typically, this is the value of nextPageToken, returned from the previous call to the queries.list method. If unspecified, the first page of results is returned.