/// <summary>
 /// Gets a list of the top 100 unique places clustered by a given placetype for a user's contacts.
 /// </summary>
 /// <param name="placeType">A place type to cluster photos by. </param>
 /// <param name="placeId">A Flickr Places identifier to use to filter photo clusters.</param>
 /// <returns>Returns an instance of <see cref="IHttpResponse"/> representing the raw response.</returns>
 public IHttpResponse PlacesForContacts(FlickrPlaceType placeType, string placeId)
 {
     return(PlacesForContacts(new FlickrGetPlacesForContactsOptions {
         PlaceType = placeType,
         PlaceId = placeId
     }));
 }
 public IHttpResponse GetPlacesForTags(FlickrPlaceType placeType, string[] tags)
 {
     return(GetPlacesForTags(new FlickrGetPlacesForTagsOptions {
         PlaceType = placeType,
         Tags = tags
     }));
 }
        // TODO: https://www.flickr.com/services/api/flickr.places.getInfoByUrl.html

        // TODO: https://www.flickr.com/services/api/flickr.places.getPlaceTypes.html

        // TODO: https://www.flickr.com/services/api/flickr.places.getShapeHistory.html

        // TODO: https://www.flickr.com/services/api/flickr.places.getTopPlacesList.html

        // TODO: https://www.flickr.com/services/api/flickr.places.placesForBoundingBox.html

        // TODO: https://www.flickr.com/services/api/flickr.places.placesForContacts.html

        /// <summary>
        /// Gets a list of the top 100 unique places clustered by a given placetype for a user's contacts.
        /// </summary>
        /// <param name="placeType">A place type to cluster photos by. </param>
        /// <returns>An instance of <see cref="IHttpResponse"/> representing the raw response.</returns>
        public IHttpResponse PlacesForContacts(FlickrPlaceType placeType)
        {
            return(PlacesForContacts(new FlickrGetPlacesForContactsOptions {
                PlaceType = placeType
            }));
        }