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

SearchDirectoryPeopleResponse

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

The response to a request for people in the authenticated user's domain directory that match the specified query.

interface SearchDirectoryPeopleResponse {
nextPageToken?: string;
people?: 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.

§
people?: Person[]
[src]

The list of people in the domain directory that match the query.

§
totalSize?: number
[src]

The total number of items in the list without pagination.