/// <summary>
 /// Search for media in a given area. The default time span is set to 5 days. The time span must not
 /// exceed 7 days. Defaults time stamps cover the last 5 days. Can return mix of image and video types.
 /// </summary>
 /// <param name="options">The search options.</param>
 /// <see cref="http://instagram.com/developer/endpoints/media/#get_media_search"/>
 public SocialHttpResponse Search(InstagramRecentMediaSearchOptions options) {
     return Client.DoAuthenticatedGetRequest("https://api.instagram.com/v1/media/search", options);
 }
 /// <summary>
 /// Search for media in a given area. The default time span is set to 5 days. The time span must not
 /// exceed 7 days. Defaults time stamps cover the last 5 days. Can return mix of image and video types.
 /// </summary>
 /// <param name="options">The search options.</param>
 public InstagramRecentMediaResponse Search(InstagramRecentMediaSearchOptions options) {
     return InstagramRecentMediaResponse.ParseResponse(Raw.Search(options));
 }