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

ListQuestionsResponse

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

Response message for QuestionsAndAnswers.ListQuestions

interface ListQuestionsResponse {
nextPageToken?: string;
questions?: Question[];
totalSize?: number;
}

§Properties

§
nextPageToken?: string
[src]

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

§
questions?: Question[]
[src]

The requested questions,

§
totalSize?: number
[src]

The total number of questions posted for this location across all pages.