/**
 * This file was auto-generated on 2023-10-24T15:44:49.788Z
 * flickr.photos.geo.getLocation
 * Get the geo data (latitude and longitude and the accuracy level) for a photo.
 * Permissions required: none
 */
export type FlickrPhotosGeoGetLocationParams = {
    /**
     * The id of the photo you want to retrieve location data for.
     */
    photo_id: string;
    /**
     * Extra flags.
     */
    extras?: string;
};
