/// <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)));
 }
 /// <summary>
 /// Gets information about the list with the specified <code>listId</code>.
 /// </summary>
 /// <param name="userId">The ID of the user owning the list.</param>
 /// <param name="slug">The slug of the list.</param>
 public TwitterListResponse GetList(long userId, string slug)
 {
     return(TwitterListResponse.ParseResponse(Raw.GetList(userId, slug)));
 }
 /// <summary>
 /// Gets information about the list with the specified <code>listId</code>.
 /// </summary>
 /// <param name="screenName">The screen name of the user owning the list.</param>
 /// <param name="slug">The slug of the list.</param>
 public TwitterListResponse GetList(string screenName, string slug)
 {
     return(TwitterListResponse.ParseResponse(Raw.GetList(screenName, slug)));
 }
 /// <summary>
 /// Gets information about the list with the specified <code>listId</code>.
 /// </summary>
 /// <param name="listId">The ID of the list.</param>
 public TwitterListResponse GetList(long listId)
 {
     return(TwitterListResponse.ParseResponse(Raw.GetList(listId)));
 }