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

ListAnswersResponse

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

Response message for QuestionsAndAnswers.ListAnswers

interface ListAnswersResponse {
answers?: Answer[];
nextPageToken?: string;
totalSize?: number;
}

§Properties

§
answers?: Answer[]
[src]

The requested answers.

§
nextPageToken?: string
[src]

If the number of answers exceeds the requested max page size, this field is populated with a token to fetch the next page of answers on a subsequent call. If there are no more answers, this field is not present in the response.

§
totalSize?: number
[src]

The total number of answers posted for this question across all pages.