/**
* This file was auto-generated on 2023-10-24T15:44:49.797Z
* flickr.photos.geo.photosForLocation
* Return a list of photos for the calling user at a specific latitude, longitude and accuracy
* Permissions required: read
*/
export type FlickrPhotosGeoPhotosForLocationParams = {
/**
* The latitude whose valid range is -90 to 90. Anything more than 6 decimal places will be truncated.
*/
lat: string;
/**
* The longitude whose valid range is -180 to 180. Anything more than 6 decimal places will be truncated.
*/
lon: string;
/**
* Recorded accuracy level of the location information. World level is 1, Country is ~3, Region ~6, City ~11, Street ~16. Current range is 1-16. Defaults to 16 if not specified.
*/
accuracy?: string;
/**
* A comma-delimited list of extra information to fetch for each returned record. Currently supported fields are: description, license, date_upload, date_taken, owner_name, icon_server, original_format, last_update, geo, tags, machine_tags, o_dims, views, media, path_alias, url_sq, url_t, url_s, url_q, url_m, url_n, url_z, url_c, url_l, url_o
*/
extras?: string;
/**
* Number of photos to return per page. If this argument is omitted, it defaults to 100. The maximum allowed value is 500.
*/
per_page?: string;
/**
* The page of results to return. If this argument is omitted, it defaults to 1.
*/
page?: string;
};