/// <summary>
 /// Search for a user by name.
 /// </summary>
 /// <param name="options">The options for the call to the API.</param>
 /// <see>
 ///     <cref>https://instagram.com/developer/endpoints/users/#get_users_search</cref>
 /// </see>
 public SocialHttpResponse Search(InstagramGetUserSearchOptions options)
 {
     return(Client.DoHttpGetRequest("https://api.instagram.com/v1/users/search", options));
 }
 /// <summary>
 /// Search for a user by name.
 /// </summary>
 /// <param name="options">The options for the call to the API.</param>
 public InstagramSearchUsersResponse Search(InstagramGetUserSearchOptions options)
 {
     return(InstagramSearchUsersResponse.ParseResponse(Raw.Search(options)));
 }