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

OrdersListOptions

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

Additional options for dfareporting#ordersList.

interface OrdersListOptions {
ids?: bigint;
maxResults?: number;
pageToken?: string;
searchString?: string;
siteId?: bigint;
sortField?: "ID" | "NAME";
sortOrder?: "ASCENDING" | "DESCENDING";
}

§Properties

§
ids?: bigint
[src]

Select only orders with these IDs.

§
maxResults?: number
[src]

Maximum number of results to return.

§
pageToken?: string
[src]

Value of the nextPageToken from the previous result page.

§
searchString?: string
[src]

Allows searching for orders by name or ID. Wildcards () are allowed. For example, "order2015" will return orders with names like "order June 2015", "order April 2015", or simply "order 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 "order" will match orders with name "my order", "order 2015", or simply "order".

§
siteId?: bigint
[src]

Select only orders that are associated with these site IDs.

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

Field by which to sort the list.

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

Order of sorted results.