/** * This file was auto-generated on 2023-10-24T15:44:49.692Z * flickr.contacts.getList * Get a list of contacts for the calling user. * Permissions required: read */ export type FlickrContactsGetListParams = { /** * An optional filter of the results. The following values are valid:
 
friends
Only contacts who are friends (and not family)
family
Only contacts who are family (and not friends)
both
Only contacts who are both friends and family
neither
Only contacts who are neither friends nor family
*/ filter?: string; /** * The page of results to return. If this argument is omitted, it defaults to 1. */ page?: string; /** * Number of photos to return per page. If this argument is omitted, it defaults to 1000. The maximum allowed value is 1000. */ per_page?: string; /** * The order in which to sort the returned contacts. Defaults to name. The possible values are: name and time. */ sort?: string; };