/// <summary>
 /// Gets a list of the photosets of the user with the specified <paramref name="userId"/>.
 /// </summary>
 /// <param name="userId">The ID of the user.</param>
 /// <param name="page">The page to be returned..</param>
 /// <param name="perPage">The maximum amount of photosets to be returned per page.</param>
 /// <returns>An instance of <see cref="FlickrGetPhotosetListResponse"/> representing the response.</returns>
 /// <see>
 ///     <cref>https://www.flickr.com/services/api/flickr.photosets.getList.html</cref>
 /// </see>
 public FlickrGetPhotosetListResponse GetList(string userId, int page, int perPage)
 {
     return(FlickrGetPhotosetListResponse.ParseResponse(Raw.GetList(userId, page, perPage)));
 }
 /// <summary>
 /// Gets a list of the photosets matching the specified <paramref name="options"/>.
 /// </summary>
 /// <param name="options">The options for the call to the API.</param>
 /// <returns>An instance of <see cref="FlickrGetPhotosetListResponse"/> representing the response.</returns>
 /// <see>
 ///     <cref>https://www.flickr.com/services/api/flickr.photosets.getList.html</cref>
 /// </see>
 public FlickrGetPhotosetListResponse GetList(FlickrGetPhotosetsOptions options)
 {
     return(FlickrGetPhotosetListResponse.ParseResponse(Raw.GetList(options)));
 }
 /// <summary>
 /// Gets a list of the photosets of the user with the specified <paramref name="userId"/>.
 /// </summary>
 /// <param name="userId">The ID of the user.</param>
 /// <returns>An instance of <see cref="FlickrGetPhotosetListResponse"/> representing the response.</returns>
 /// <see>
 ///     <cref>https://www.flickr.com/services/api/flickr.photosets.getList.html</cref>
 /// </see>
 public FlickrGetPhotosetListResponse GetList(string userId)
 {
     return(FlickrGetPhotosetListResponse.ParseResponse(Raw.GetList(userId)));
 }