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

UserRolesListOptions

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

Additional options for dfareporting#userRolesList.

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

§Properties

§
accountUserRoleOnly?: boolean
[src]

Select only account level user roles not associated with any specific subaccount.

§
ids?: bigint
[src]

Select only user roles with the specified 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, "userrole2015" will return objects with names like "userrole June 2015", "userrole April 2015", or simply "userrole 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 "userrole" will match objects with name "my userrole", "userrole 2015", or simply "userrole".

§
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 roles that belong to this subaccount.