flickr-sdk
Version:
Almost certainly the best Flickr API client in the world for node and the browser
21 lines (20 loc) • 547 B
TypeScript
/**
* This file was auto-generated on 2023-10-24T15:44:49.839Z
* flickr.photos.setMeta
* Set the meta information for a photo.
* Permissions required: write
*/
export type FlickrPhotosSetMetaParams = {
/**
* The id of the photo to set information for.
*/
photo_id: string;
/**
* The title for the photo. At least one of title or description must be set.
*/
title?: string;
/**
* The description for the photo. At least one of title or description must be set.
*/
description?: string;
};