flickr-sdk
Version:
Almost certainly the best Flickr API client in the world for node and the browser
25 lines (24 loc) • 749 B
TypeScript
/**
* This file was auto-generated on 2023-10-24T15:44:49.787Z
* flickr.photos.geo.correctLocation
*
* Permissions required: write
*/
export type FlickrPhotosGeoCorrectLocationParams = {
/**
* The ID of the photo whose WOE location is being corrected.
*/
photo_id: string;
/**
* A Flickr Places ID. (While optional, you must pass either a valid Places ID or a WOE ID.)
*/
place_id?: string;
/**
* A Where On Earth (WOE) ID. (While optional, you must pass either a valid Places ID or a WOE ID.)
*/
woe_id?: string;
/**
* The venue ID for a Foursquare location. (If not passed in with correction, any existing foursquare venue will be removed).
*/
foursquare_id: string;
};