flickr-sdk
Version:
Almost certainly the best Flickr API client in the world for node and the browser
17 lines (16 loc) • 345 B
TypeScript
/**
* This file was auto-generated on 2023-10-24T15:44:49.779Z
* flickr.photos.addTags
* Add tags to a photo.
* Permissions required: write
*/
export type FlickrPhotosAddTagsParams = {
/**
* The id of the photo to add tags to.
*/
photo_id: string;
/**
* The tags to add to the photo.
*/
tags: string;
};