/** * This file was auto-generated on 2023-10-24T15:44:49.779Z * flickr.photos.addTags * Add tags to a photo. * Permissions required: write */ export type FlickrPhotosAddTagsParams = { /** * The id of the photo to add tags to. */ photo_id: string; /** * The tags to add to the photo. */ tags: string; };