flickr-sdk
Version:
Almost certainly the best Flickr API client in the world for node and the browser
17 lines (16 loc) • 410 B
TypeScript
/**
* This file was auto-generated on 2023-10-24T15:44:49.780Z
* flickr.photos.comments.addComment
* Add comment to a photo as the currently authenticated user.
* Permissions required: write
*/
export type FlickrPhotosCommentsAddCommentParams = {
/**
* The id of the photo to add a comment to.
*/
photo_id: string;
/**
* Text of the comment
*/
comment_text: string;
};