/**
* This file was auto-generated on 2023-10-24T15:44:49.664Z
* flickr.activity.userPhotos
* Returns a list of recent activity on photos belonging to the calling user. Do not poll this method more than once an hour.
* Permissions required: read
*/
export type FlickrActivityUserPhotosParams = {
/**
* The timeframe in which to return updates for. This can be specified in days ('2d') or hours ('4h'). The default behavoir is to return changes since the beginning of the previous user session.
*/
timeframe?: string;
/**
* 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;
};