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

AttributesListOptions

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

Additional options for MyBusinessBusinessInformation#attributesList.

interface AttributesListOptions {
categoryName?: string;
languageCode?: string;
pageSize?: number;
pageToken?: string;
parent?: string;
regionCode?: string;
showAll?: boolean;
}

§Properties

§
categoryName?: string
[src]

The primary category stable ID to find available attributes. Must be of the format categories/{category_id}.

§
languageCode?: string
[src]

The BCP 47 code of language to get attribute display names in. If this language is not available, they will be provided in English.

§
pageSize?: number
[src]

How many attributes to include per page. Default is 200, minimum is 1.

§
pageToken?: string
[src]

If specified, the next page of attribute metadata is retrieved.

§
parent?: string
[src]

Resource name of the location to look up available attributes. If this field is set, category_name, region_code, language_code and show_all are not required and must not be set.

§
regionCode?: string
[src]

The ISO 3166-1 alpha-2 country code to find available attributes.

§
showAll?: boolean
[src]

Metadata for all available attributes are returned when this field is set to true, disregarding parent and category_name fields. language_code and region_code are required when show_all is set to true.