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

ListOtherContactsResponse

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

The response to a request for the authenticated user's "Other contacts".

interface ListOtherContactsResponse {
nextPageToken?: string;
nextSyncToken?: string;
otherContacts?: Person[];
totalSize?: number;
}

§Properties

§
nextPageToken?: string
[src]

A token, which can be sent as page_token to retrieve the next page. If this field is omitted, there are no subsequent pages.

§
nextSyncToken?: string
[src]

A token, which can be sent as sync_token to retrieve changes since the last request. Request must set request_sync_token to return the sync token.

§
otherContacts?: Person[]
[src]

The list of "Other contacts" returned as Person resources. "Other contacts" support a limited subset of fields. See ListOtherContactsRequest.request_mask for more detailed information.

§
totalSize?: number
[src]

The total number of other contacts in the list without pagination.