/** * This file was auto-generated on 2023-10-24T15:44:49.862Z * flickr.photosets.removePhoto * Remove a photo from a photoset. * Permissions required: write */ export type FlickrPhotosetsRemovePhotoParams = { /** * The id of the photoset to remove a photo from. */ photoset_id: string; /** * The id of the photo to remove from the set. */ photo_id: string; };