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.849Z
* flickr.photosets.addPhoto
* Add a photo to the end of an existing photoset.
* Permissions required: write
*/
export type FlickrPhotosetsAddPhotoParams = {
/**
* The id of the photoset to add a photo to.
*/
photoset_id: string;
/**
* The id of the photo to add to the set.
*/
photo_id: string;
};