flickr-sdk
Version:
Almost certainly the best Flickr API client in the world for node and the browser
21 lines (20 loc) • 533 B
TypeScript
/**
* This file was auto-generated on 2023-10-24T15:44:49.853Z
* flickr.photosets.create
* Create a new photoset for the calling user.
* Permissions required: write
*/
export type FlickrPhotosetsCreateParams = {
/**
* A title for the photoset.
*/
title: string;
/**
* A description of the photoset. May contain limited html.
*/
description?: string;
/**
* The id of the photo to represent this set. The photo must belong to the calling user.
*/
primary_photo_id: string;
};