flickr-sdk
Version:
Almost certainly the best Flickr API client in the world for node and the browser
21 lines (20 loc) • 479 B
TypeScript
/**
* This file was auto-generated on 2023-10-24T15:44:49.855Z
* flickr.photosets.editMeta
* Modify the meta-data for a photoset.
* Permissions required: write
*/
export type FlickrPhotosetsEditMetaParams = {
/**
* The id of the photoset to modify.
*/
photoset_id: string;
/**
* The new title for the photoset.
*/
title: string;
/**
* A description of the photoset. May contain limited html.
*/
description?: string;
};