/** * This file was auto-generated on 2023-10-24T15:44:49.877Z * flickr.places.placesForUser * Return a list of the top 100 unique places clustered by a given placetype for a user. * Permissions required: read */ export type FlickrPlacesPlacesForUserParams = { /** * The numeric ID for a specific place type to cluster photos by.

Valid place type IDs 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_id?: string; /** * A specific place type to cluster photos by.

Valid place types are :
(While optional, you must pass either a valid place type or place type ID.) */ place_type?: string; /** * A Where on Earth identifier to use to filter photo clusters. For example all the photos clustered by locality in the United States (WOE ID 23424977).

(While optional, you must pass either a valid Places ID or a WOE ID.) */ woe_id?: string; /** * A Flickr Places identifier to use to filter photo clusters. For example all the photos clustered by locality in the United States (Place ID 4KO02SibApitvSBieQ).

(While optional, you must pass either a valid Places ID or a WOE ID.) */ place_id?: string; /** * The minimum number of photos that a place type must have to be included. If the number of photos is lowered then the parent place type for that place will be used.

For example if you only have 3 photos taken in the locality of Montreal (WOE ID 3534) but your threshold is set to 5 then those photos will be "rolled up" and included instead with a place record for the region of Quebec (WOE ID 2344924). */ threshold?: string; /** * Minimum upload date. Photos with an upload date greater than or equal to this value will be returned. The date should be in the form of a unix timestamp. */ min_upload_date?: string; /** * Maximum upload date. Photos with an upload date less than or equal to this value will be returned. The date should be in the form of a unix timestamp. */ max_upload_date?: string; /** * Minimum taken date. Photos with an taken date greater than or equal to this value will be returned. The date should be in the form of a mysql datetime. */ min_taken_date?: string; /** * Maximum taken date. Photos with an taken date less than or equal to this value will be returned. The date should be in the form of a mysql datetime. */ max_taken_date?: string; };