UNPKG

flickr-sdk

Version:

Almost certainly the best Flickr API client in the world for node and the browser

27 lines (23 loc) 1.03 kB
/** * This file was auto-generated on 2023-10-24T15:44:49.694Z * flickr.contacts.getListRecentlyUploaded * Return a list of contacts for a user who have recently uploaded photos along with the total count of photos uploaded.<br /><br /> This method is still considered experimental. We don't plan for it to change or to go away but so long as this notice is present you should write your code accordingly. * Permissions required: read */ export type FlickrContactsGetListRecentlyUploadedParams = { /** * Limits the resultset to contacts that have uploaded photos since this date. The date should be in the form of a Unix timestamp. The default offset is (1) hour and the maximum (24) hours. */ date_lastupload?: string; /** * Limit the result set to all contacts or only those who are friends or family. Valid options are: <ul> <li><strong>ff</strong> friends and family</li> <li><strong>all</strong> all your contacts</li> </ul> Default value is "all". */ filter?: string; };