/// <summary>
 /// Gets a list of lists of the user with the specified <code>userId</code>.
 /// </summary>
 /// <param name="userId">The ID of the user.</param>
 public TwitterListsResponse GetLists(long userId)
 {
     return(TwitterListsResponse.ParseResponse(Raw.GetLists(userId)));
 }
 /// <summary>
 /// Gets a list of lists of the user with the specified <code>screenName</code>.
 /// </summary>
 /// <param name="screenName">The screen name of the user.</param>
 public TwitterListsResponse GetLists(string screenName)
 {
     return(TwitterListsResponse.ParseResponse(Raw.GetLists(screenName)));
 }
 /// <summary>
 /// Gets a list of list of the authenticated user.
 /// </summary>
 /// <returns></returns>
 public TwitterListsResponse GetLists()
 {
     return(TwitterListsResponse.ParseResponse(Raw.GetLists()));
 }