flickr-sdk
Version:
Almost certainly the best Flickr API client in the world for node and the browser
21 lines (20 loc) • 531 B
TypeScript
/**
* This file was auto-generated on 2023-10-24T15:44:49.935Z
* flickr.testimonials.getTestimonialsBy
* Get approved testimonials written by the given user
* Permissions required: none
*/
export type FlickrTestimonialsGetTestimonialsByParams = {
/**
* ID of the user to get testimonials written by
*/
user_id: string;
/**
* Page number. Default is 0
*/
page?: string;
/**
* Number of testimonials to return per page. Default is 10, maximum is 50
*/
per_page?: string;
};