flickr-sdk
Version:
Almost certainly the best Flickr API client in the world for node and the browser
21 lines (20 loc) • 448 B
TypeScript
/**
* This file was auto-generated on 2023-10-24T15:44:49.709Z
* flickr.galleries.editMeta
* Modify the meta-data for a gallery.
* Permissions required: write
*/
export type FlickrGalleriesEditMetaParams = {
/**
* The gallery ID to update.
*/
gallery_id: string;
/**
* The new title for the gallery.
*/
title: string;
/**
* The new description for the gallery.
*/
description?: string;
};