/// <summary>
 /// Gets a list of followers for a given user using the specified options.
 /// </summary>
 /// <param name="options">The options for the call.</param>
 public TwitterUserListResponse GetList(TwitterFollowersListOptions options) {
     return TwitterUserListResponse.ParseResponse(Raw.GetList(options));
 }
 /// <summary>
 /// Gets a list of followers for a given user using the specified options.
 /// </summary>
 /// <param name="options">The options for the call.</param>
 public SocialHttpResponse GetList(TwitterFollowersListOptions options) {
     return Client.DoHttpGetRequest("https://api.twitter.com/1.1/followers/list.json", options);
 }