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