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

ListParticipantsResponse

import type { ListParticipantsResponse } from "https://googleapis.deno.dev/v1/meet:v2.ts";

Response of ListParticipants method.

interface ListParticipantsResponse {
nextPageToken?: string;
participants?: Participant[];
totalSize?: number;
}

§Properties

§
nextPageToken?: string
[src]

Token to be circulated back for further List call if current List doesn't include all the participants. Unset if all participants are returned.

§
participants?: Participant[]
[src]

List of participants in one page.

§
totalSize?: number
[src]

Total, exact number of participants. By default, this field isn't included in the response. Set the field mask in SystemParameterContext to receive this field in the response.