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

ProjectsContactsComputeOptions

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

Additional options for EssentialContacts#projectsContactsCompute.

interface ProjectsContactsComputeOptions {
notificationCategories?:
| "NOTIFICATION_CATEGORY_UNSPECIFIED"
| "ALL"
| "SUSPENSION"
| "SECURITY"
| "TECHNICAL"
| "BILLING"
| "LEGAL"
| "PRODUCT_UPDATES"
| "TECHNICAL_INCIDENTS";
pageSize?: number;
pageToken?: string;
}

§Properties

§
notificationCategories?: "NOTIFICATION_CATEGORY_UNSPECIFIED" | "ALL" | "SUSPENSION" | "SECURITY" | "TECHNICAL" | "BILLING" | "LEGAL" | "PRODUCT_UPDATES" | "TECHNICAL_INCIDENTS"
[src]

The categories of notifications to compute contacts for. If ALL is included in this list, contacts subscribed to any notification category will be returned.

§
pageSize?: number
[src]

Optional. The maximum number of results to return from this request. Non-positive values are ignored. The presence of next_page_token in the response indicates that more results might be available. If not specified, the default page_size is 100.

§
pageToken?: string
[src]

Optional. If present, retrieves the next batch of results from the preceding call to this method. page_token must be the value of next_page_token from the previous response. The values of other method parameters should be identical to those in the previous call.