/** * 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.

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: Default value is "all". */ filter?: string; };