flickr-sdk
Version:
Almost certainly the best Flickr API client in the world for node and the browser
17 lines (16 loc) • 601 B
TypeScript
/**
* This file was auto-generated on 2023-10-24T15:44:49.559Z
* flickr.activity.userComments
* Returns a list of recent activity on photos commented on by the calling user. <b>Do not poll this method more than once an hour</b>.
* Permissions required: read
*/
export type FlickrActivityUserCommentsParams = {
/**
* Number of items to return per page. If this argument is omitted, it defaults to 10. The maximum allowed value is 50.
*/
per_page?: string;
/**
* The page of results to return. If this argument is omitted, it defaults to 1.
*/
page?: string;
};