/// <summary>
 /// Gets a list of IDs representing the followers of a given user.
 /// </summary>
 /// <param name="options">The options for the call.</param>
 public TwitterIdsResponse GetIds(TwitterFollowersIdsOptions options) {
     return TwitterIdsResponse.ParseResponse(Raw.GetIds(options));
 }
 /// <summary>
 /// Gets a list of IDs representing the followers of a given user.
 /// </summary>
 /// <param name="options">The options for the call.</param>
 public SocialHttpResponse GetIds(TwitterFollowersIdsOptions options) {
     return Client.DoHttpGetRequest("https://api.twitter.com/1.1/followers/ids.json", options);
 }