/**
 * 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;
};
