flickr-sdk
Version:
Almost certainly the best Flickr API client in the world for node and the browser
18 lines (16 loc) • 381 B
TypeScript
/**
* This file was auto-generated on 2023-10-24T15:44:49.842Z
* flickr.photos.setTags
* Set the tags for a photo.
* Permissions required: write
*/
export type FlickrPhotosSetTagsParams = {
/**
* The id of the photo to set tags for.
*/
photo_id: string;
/**
* All tags for the photo (as a single space-delimited string).
*/
tags: string;
};