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

PhotosListOptions

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

Additional options for StreetViewPublish#photosList.

interface PhotosListOptions {
filter?: string;
languageCode?: string;
pageSize?: number;
pageToken?: string;
view?: "BASIC" | "INCLUDE_DOWNLOAD_URL";
}

§Properties

§
filter?: string
[src]

Optional. The filter expression. For example: placeId=ChIJj61dQgK6j4AR4GeTYWZsKWw. The filters supported are: placeId, min_latitude, max_latitude, min_longitude, max_longitude. See https://google.aip.dev/160 for more information.

§
languageCode?: string
[src]

Optional. The BCP-47 language code, such as "en-US" or "sr-Latn". For more information, see http://www.unicode.org/reports/tr35/#Unicode_locale_identifier. If language_code is unspecified, the user's language preference for Google services is used.

§
pageSize?: number
[src]

Optional. The maximum number of photos to return. pageSize must be non-negative. If pageSize is zero or is not provided, the default page size of 100 is used. The number of photos returned in the response may be less than pageSize if the number of photos that belong to the user is less than pageSize.

§
pageToken?: string
[src]

Optional. The nextPageToken value returned from a previous ListPhotos request, if any.

§
view?: "BASIC" | "INCLUDE_DOWNLOAD_URL"
[src]

Required. Specifies if a download URL for the photos bytes should be returned in the Photos response.