/**
 * 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;
};
