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

AccountsListOptions

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

Additional options for dfareporting#accountsList.

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

§Properties

§
active?: boolean
[src]

Select only active accounts. Don't set this field to select both active and non-active accounts.

§
ids?: bigint
[src]

Select only accounts 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 objects by name or ID. Wildcards () are allowed. For example, "account2015" will return objects with names like "account June 2015", "account April 2015", or simply "account 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 "account" will match objects with name "my account", "account 2015", or simply "account".

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

Field by which to sort the list.

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

Order of sorted results.