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

AccountUserProfilesListOptions

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

Additional options for dfareporting#accountUserProfilesList.

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

§Properties

§
active?: boolean
[src]

Select only active user profiles.

§
ids?: bigint
[src]

Select only user profiles 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, ID or email. Wildcards () are allowed. For example, "user profile2015" will return objects with names like "user profile June 2015", "user profile April 2015", or simply "user profile 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 "user profile" will match objects with name "my user profile", "user profile 2015", or simply "user profile".

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

Field by which to sort the list.

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

Order of sorted results.

§
subaccountId?: bigint
[src]

Select only user profiles with the specified subaccount ID.

§
userRoleId?: bigint
[src]

Select only user profiles with the specified user role ID.