flickr-sdk
Version:
Almost certainly the best Flickr API client in the world for node and the browser
17 lines (16 loc) • 431 B
TypeScript
/**
* This file was auto-generated on 2023-10-24T15:44:49.863Z
* flickr.photosets.removePhotos
* Remove multiple photos from a photoset.
* Permissions required: write
*/
export type FlickrPhotosetsRemovePhotosParams = {
/**
* The id of the photoset to remove photos from.
*/
photoset_id: string;
/**
* Comma-delimited list of photo ids to remove from the photoset.
*/
photo_ids: string;
};