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

ListFormResponsesResponse

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

Response to a ListFormResponsesRequest.

interface ListFormResponsesResponse {
nextPageToken?: string;
responses?: FormResponse[];
}

§Properties

§
nextPageToken?: string
[src]

If set, there are more responses. To get the next page of responses, provide this as page_token in a future request.

§
responses?: FormResponse[]
[src]

The returned form responses. Note: The formId field is not returned in the FormResponse object for list requests.