/**
* This file was auto-generated on 2023-10-24T15:44:49.840Z
* flickr.photos.setPerms
* Set permissions for a photo.
* Permissions required: write
*/
export type FlickrPhotosSetPermsParams = {
/**
* The id of the photo to set permissions for.
*/
photo_id: string;
/**
* 1 to set the photo to public, 0 to set it to private.
*/
is_public: string;
/**
* 1 to make the photo visible to friends when private, 0 to not.
*/
is_friend: string;
/**
* 1 to make the photo visible to family when private, 0 to not.
*/
is_family: string;
/**
* who can add comments to the photo and it's notes. one of:
0: nobody
1: friends & family
2: contacts
3: everybody
*/
perm_comment?: string;
/**
* who can add notes and tags to the photo. one of:
0: nobody / just the owner
1: friends & family
2: contacts
3: everybody
*/
perm_addmeta?: string;
};