flickr-sdk
Version:
Almost certainly the best Flickr API client in the world for node and the browser
53 lines (51 loc) • 2.63 kB
TypeScript
/**
* This file was auto-generated on 2023-10-24T15:44:49.810Z
* flickr.photos.getNotInSet
* Returns a list of your photos that are not part of any sets.
* Permissions required: read
*/
export type FlickrPhotosGetNotInSetParams = {
/**
* Maximum upload date. Photos with an upload date less than or equal to this value will be returned. The date can be in the form of a unix timestamp or mysql datetime.
*/
max_upload_date?: string;
/**
* Minimum taken date. Photos with an taken date greater than or equal to this value will be returned. The date can be in the form of a mysql datetime or unix timestamp.
*/
min_taken_date?: string;
/**
* Maximum taken date. Photos with an taken date less than or equal to this value will be returned. The date can be in the form of a mysql datetime or unix timestamp.
*/
max_taken_date?: string;
/**
* Return photos only matching a certain privacy level. Valid values are:
<ul>
<li>1 public photos</li>
<li>2 private photos visible to friends</li>
<li>3 private photos visible to family</li>
<li>4 private photos visible to friends & family</li>
<li>5 completely private photos</li>
</ul>
*/
privacy_filter?: string;
/**
* Filter results by media type. Possible values are <code>all</code> (default), <code>photos</code> or <code>videos</code>
*/
media?: string;
/**
* Minimum upload date. Photos with an upload date greater than or equal to this value will be returned. The date can be in the form of a unix timestamp or mysql datetime.
*/
min_upload_date?: string;
/**
* A comma-delimited list of extra information to fetch for each returned record. Currently supported fields are: <code>description</code>, <code>license</code>, <code>date_upload</code>, <code>date_taken</code>, <code>owner_name</code>, <code>icon_server</code>, <code>original_format</code>, <code>last_update</code>, <code>geo</code>, <code>tags</code>, <code>machine_tags</code>, <code>o_dims</code>, <code>views</code>, <code>media</code>, <code>path_alias</code>, <code>url_sq</code>, <code>url_t</code>, <code>url_s</code>, <code>url_q</code>, <code>url_m</code>, <code>url_n</code>, <code>url_z</code>, <code>url_c</code>, <code>url_l</code>, <code>url_o</code>
*/
extras?: string;
/**
* Number of photos to return per page. If this argument is omitted, it defaults to 100. The maximum allowed value is 500.
*/
per_page?: string;
/**
* The page of results to return. If this argument is omitted, it defaults to 1.
*/
page?: string;
};