/**
* This file was auto-generated on 2023-10-24T15:44:49.719Z
* flickr.galleries.getPhotos
* Return the list of photos for a gallery
* Permissions required: none
*/
export type FlickrGalleriesGetPhotosParams = {
/**
* The ID of the gallery of photos to return
*/
gallery_id: string;
/**
* Using this parameter indicates to the server that the client is using the new, continuation based pagination rather than the older page/per_page based pagination.
The first request must pass the "continuation" parameter with the value of "0". The server responds back with a response that includes the "continuation" field along with the "per_page" field in the response. For the subsequent requests, the client must relay the value of the "continuation" response field as the value of the "continuation" request parameter. On the last page of results, the server will respond with a continuation value of "-1".
*/
continuation?: string;
/**
* set to 1 if user details should be returned
*/
get_user_info?: string;
/**
* if set to 1, info about the gallery is also returned
*/
get_gallery_info?: string;
/**
* A comma-delimited list of extra information to fetch for each returned record. Currently supported fields are: description, license, date_upload, date_taken, owner_name, icon_server, original_format, last_update, geo, tags, machine_tags, o_dims, views, media, path_alias, url_sq, url_t, url_s, url_q, url_m, url_n, url_z, url_c, url_l, url_o
*/
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;
};