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

LocationsQuestionsListOptions

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

Additional options for MyBusinessqanda#locationsQuestionsList.

interface LocationsQuestionsListOptions {
answersPerQuestion?: number;
filter?: string;
orderBy?: string;
pageSize?: number;
pageToken?: string;
}

§Properties

§
answersPerQuestion?: number
[src]

Optional. How many answers to fetch per question. The default and maximum answers_per_question values are 10.

§
filter?: string
[src]

Optional. A filter constraining the questions to return. The only filter currently supported is "ignore_answered=true"

§
orderBy?: string
[src]

Optional. The order to return the questions. Valid options include 'update_time desc' and 'upvote_count desc', which will return the questions sorted descendingly by the requested field. The default sort order is 'update_time desc'.

§
pageSize?: number
[src]

Optional. How many questions to fetch per page. The default and maximum page_size values are 10.

§
pageToken?: string
[src]

Optional. If specified, the next page of questions is retrieved.