UNPKG

flickr-sdk

Version:

Almost certainly the best Flickr API client in the world for node and the browser

17 lines (16 loc) 417 B
/** * This file was auto-generated on 2023-10-24T15:44:49.858Z * flickr.photosets.getInfo * Gets information about a photoset. * Permissions required: none */ export type FlickrPhotosetsGetInfoParams = { /** * The ID of the photoset to fetch information for. */ photoset_id: string; /** * The user_id here is the owner of the set passed in photoset_id. */ user_id: string; };