UNPKG

flickr-sdk

Version:

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

17 lines (16 loc) 391 B
/** * This file was auto-generated on 2023-10-24T15:44:49.850Z * flickr.photosets.comments.addComment * Add a comment to a photoset. * Permissions required: write */ export type FlickrPhotosetsCommentsAddCommentParams = { /** * The id of the photoset to add a comment to. */ photoset_id: string; /** * Text of the comment */ comment_text: string; };