flickr-sdk
Version:
Almost certainly the best Flickr API client in the world for node and the browser
21 lines (20 loc) • 601 B
TypeScript
/**
* This file was auto-generated on 2023-10-24T15:44:49.783Z
* flickr.photos.comments.getList
* Returns the comments for a photo
* Permissions required: none
*/
export type FlickrPhotosCommentsGetListParams = {
/**
* The id of the photo to fetch comments for.
*/
photo_id: string;
/**
* Minimum date that a a comment was added. The date should be in the form of a unix timestamp.
*/
min_comment_date?: string;
/**
* Maximum date that a comment was added. The date should be in the form of a unix timestamp.
*/
max_comment_date?: string;
};