flickr-sdk
Version:
Almost certainly the best Flickr API client in the world for node and the browser
25 lines (24 loc) • 735 B
TypeScript
/**
* This file was auto-generated on 2023-10-24T15:44:49.758Z
* flickr.machinetags.getValues
* Return a list of unique values for a namespace and predicate.
* Permissions required: none
*/
export type FlickrMachinetagsGetValuesParams = {
/**
* The namespace that all values should be restricted to.
*/
namespace: string;
/**
* The predicate that all values should be restricted to.
*/
predicate: 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;
};