/// <summary>
 /// Search for a user by name.
 /// </summary>
 /// <param name="options">The options for the call to the API.</param>
 public SocialHttpResponse Search(InstagramUserSearchOptions options) {
     return Client.DoAuthenticatedGetRequest("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 InstagramUsersResponse Search(InstagramUserSearchOptions options) {
     return InstagramUsersResponse.ParseResponse(Raw.Search(options));
 }
 /// <summary>
 /// Search for a user by name.
 /// </summary>
 /// <param name="options">The options for the call to the API.</param>
 public InstagramUsersResponse Search(InstagramUserSearchOptions options)
 {
     return(InstagramUsersResponse.ParseResponse(Raw.Search(options)));
 }
 /// <summary>
 /// Search for a user by name.
 /// </summary>
 /// <param name="options">The options for the call to the API.</param>
 public SocialHttpResponse Search(InstagramUserSearchOptions options)
 {
     return(Client.DoAuthenticatedGetRequest("https://api.instagram.com/v1/users/search", options));
 }