flickr-sdk
Version:
Almost certainly the best Flickr API client in the world for node and the browser
33 lines (32 loc) • 779 B
TypeScript
/**
* This file was auto-generated on 2023-10-24T15:44:49.682Z
* flickr.blogs.postPhoto
*
* Permissions required: write
*/
export type FlickrBlogsPostPhotoParams = {
/**
* The id of the blog to post to.
*/
blog_id?: string;
/**
* The id of the photo to blog
*/
photo_id: string;
/**
* The blog post title
*/
title: string;
/**
* The blog post body
*/
description: string;
/**
* The password for the blog (used when the blog does not have a stored password).
*/
blog_password?: string;
/**
* A Flickr supported blogging service. Instead of passing a blog id you can pass a service id and we'll post to the first blog of that service we find.
*/
service?: string;
};