/** * This file was auto-generated on 2023-10-24T15:44:49.799Z * flickr.photos.geo.setContext * Indicate the state of a photo's geotagginess beyond latitude and longitude.

Note : photos passed to this method must already be geotagged (using the flickr.photos.geo.setLocation method). * Permissions required: write */ export type FlickrPhotosGeoSetContextParams = { /** * The id of the photo to set context data for. */ photo_id: string; /** * Context is a numeric value representing the photo's geotagginess beyond latitude and longitude. For example, you may wish to indicate that a photo was taken "indoors" or "outdoors".

The current list of context IDs is :

*/ context: string; };