flickr-sdk
Version:
Almost certainly the best Flickr API client in the world for node and the browser
17 lines (16 loc) • 402 B
TypeScript
/**
* 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;
};