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

ListContactGroupsResponse

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

The response to a list contact groups request.

interface ListContactGroupsResponse {
contactGroups?: ContactGroup[];
nextPageToken?: string;
nextSyncToken?: string;
totalItems?: number;
}

§Properties

§
contactGroups?: ContactGroup[]
[src]

The list of contact groups. Members of the contact groups are not populated.

§
nextPageToken?: string
[src]

The token that can be used to retrieve the next page of results.

§
nextSyncToken?: string
[src]

The token that can be used to retrieve changes since the last request.

§
totalItems?: number
[src]

The total number of items in the list without pagination.