/// <summary>
 /// Provides a simple, relevance-based search interface to public user accounts on Twitter. Try querying by
 /// topical interest, full name, company name, location, or other criteria. Exact match searches are not
 /// supported.
 /// 
 /// Only the first 1,000 matching results are available.
 /// </summary>
 /// <param name="options">The options for the call to the API.</param>
 public SocialHttpResponse Search(TwitterUsersSearchOptions options) {
     if (options == null) throw new ArgumentNullException("options");
     return Client.DoHttpGetRequest("https://api.twitter.com/1.1/users/search.json", options);
 }
 /// <summary>
 /// Provides a simple, relevance-based search interface to public user
 /// accounts on Twitter. Try querying by topical interest, full name,
 /// company name, location, or other criteria. Exact match searches are
 /// not supported.
 /// </summary>
 /// <param name="options">The search options.</param>
 public TwitterUsersSearchResponse Search(TwitterUsersSearchOptions options) {
     return TwitterUsersSearchResponse.ParseResponse(Raw.Search(options));
 }