/// <summary>
 /// Gets a list of friends for a given user using the default options.
 /// </summary>
 /// <param name="userId">The ID of the user.</param>
 /// <param name="options">The options for the call.</param>
 public TwitterUserListResponse GetListFromUserId(long userId, TwitterFollowersListOptions options)
 {
     return(TwitterUserListResponse.ParseJson(Raw.GetListFromUserId(userId, options)));
 }
 /// <summary>
 /// Gets a list of friends for a given user using the specified options.
 /// </summary>
 /// <param name="screenName">The screen name of the user.</param>
 /// <param name="options">The options for the call.</param>
 public TwitterUserListResponse GetListFromScreenName(string screenName, TwitterFollowersListOptions options)
 {
     return(TwitterUserListResponse.ParseJson(Raw.GetListFromScreenName(screenName, options)));
 }