/** * This file was auto-generated on 2023-10-24T15:44:49.873Z * flickr.places.placesForBoundingBox * Return all the locations of a matching place type for a bounding box.

The maximum allowable size of a bounding box (the distance between the SW and NE corners) is governed by the place type you are requesting. Allowable sizes are as follows: * Permissions required: none */ export type FlickrPlacesPlacesForBoundingBoxParams = { /** * A comma-delimited list of 4 values defining the Bounding Box of the area that will be searched. The 4 values represent the bottom-left corner of the box and the top-right corner, minimum_longitude, minimum_latitude, maximum_longitude, maximum_latitude. */ bbox: string; /** * The name of place type to using as the starting point to search for places in a bounding box. Valid placetypes are:
The "place_type" argument has been deprecated in favor of the "place_type_id" argument. It won't go away but it will not be added to new methods. A complete list of place type IDs is available using the flickr.places.getPlaceTypes method. (While optional, you must pass either a valid place type or place type ID.) */ place_type?: string; /** * The numeric ID for a specific place type to cluster photos by.

Valid place type IDs are :
(While optional, you must pass either a valid place type or place type ID.) */ place_type_id?: string; };