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

CustomersUserinvitationsListOptions

import type { CustomersUserinvitationsListOptions } from "https://googleapis.deno.dev/v1/cloudidentity:v1.ts";

Additional options for CloudIdentity#customersUserinvitationsList.

interface CustomersUserinvitationsListOptions {
filter?: string;
orderBy?: string;
pageSize?: number;
pageToken?: string;
}

§Properties

§
filter?: string
[src]

Optional. A query string for filtering UserInvitation results by their current state, in the format: "state=='invited'".

§
orderBy?: string
[src]

Optional. The sort order of the list results. You can sort the results in descending order based on either email or last update timestamp but not both, using order_by="email desc". Currently, sorting is supported for update_time asc, update_time desc, email asc, and email desc. If not specified, results will be returned based on email asc order.

§
pageSize?: number
[src]

Optional. The maximum number of UserInvitation resources to return. If unspecified, at most 100 resources will be returned. The maximum value is 200; values above 200 will be set to 200.

§
pageToken?: string
[src]

Optional. A page token, received from a previous ListUserInvitations call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to ListBooks must match the call that provided the page token.