/** * This file was auto-generated on 2023-10-24T15:44:49.842Z * flickr.photos.setTags * Set the tags for a photo. * Permissions required: write */ export type FlickrPhotosSetTagsParams = { /** * The id of the photo to set tags for. */ photo_id: string; /** * All tags for the photo (as a single space-delimited string). */ tags: string; };