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

ListDirectoryPeopleResponse

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

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

interface ListDirectoryPeopleResponse {
nextPageToken?: string;
nextSyncToken?: string;
people?: Person[];
}

§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.

§
people?: Person[]
[src]

The list of people in the domain directory.