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

ListConnectionsResponse

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

The response to a request for the authenticated user's connections.

interface ListConnectionsResponse {
connections?: Person[];
nextPageToken?: string;
nextSyncToken?: string;
totalItems?: number;
totalPeople?: number;
}

§Properties

§
connections?: Person[]
[src]

The list of people that the requestor is connected to.

§
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. When the response is paginated, only the last page will contain nextSyncToken.

§
totalItems?: number
[src]

The total number of items in the list without pagination.

§
totalPeople?: number
[src]

DEPRECATED (Please use totalItems) The total number of people in the list without pagination.