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

AlertsListOptions

import type { AlertsListOptions } from "https://googleapis.deno.dev/v1/alertcenter:v1beta1.ts";

Additional options for AlertCenter#alertsList.

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

§Properties

§
customerId?: string
[src]

Optional. The unique identifier of the Google Workspace account of the customer the alerts are associated with. The customer_id must have the initial "C" stripped (for example, 046psxkn). Inferred from the caller identity if not provided. Find your customer ID.

§
filter?: string
[src]

Optional. A query string for filtering alert results. For more details, see Query filters and Supported query filter fields.

§
orderBy?: string
[src]

Optional. The sort order of the list results. If not specified results may be returned in arbitrary order. You can sort the results in descending order based on the creation timestamp using order_by="create_time desc". Currently, supported sorting are create_time asc, create_time desc, update_time desc

§
pageSize?: number
[src]

Optional. The requested page size. Server may return fewer items than requested. If unspecified, server picks an appropriate default.

§
pageToken?: string
[src]

Optional. A token identifying a page of results the server should return. If empty, a new iteration is started. To continue an iteration, pass in the value from the previous ListAlertsResponse's next_page_token field.