/// <summary>
 /// Gets information about the list matching the specified <code>options</code>.
 /// </summary>
 /// <param name="options">The options for the call to the API.</param>
 /// <see>
 ///     <cref>https://dev.twitter.com/rest/reference/get/lists/show</cref>
 /// </see>
 public SocialHttpResponse GetList(TwitterGetListOptions options) {
     return Client.DoHttpGetRequest("https://api.twitter.com/1.1/lists/list.json", options);
 }
 /// <summary>
 /// Gets information about the list matching the specified <code>options</code>.
 /// </summary>
 /// <param name="options">The options for the call to the API.</param>
 public TwitterListResponse GetList(TwitterGetListOptions options) {
     return TwitterListResponse.ParseResponse(Raw.GetList(options));
 }