/// <summary>
 /// Gets the members of the list matching the specified <paramref name="options"/>. Private list members will only be
 /// shown if the authenticated user owns the specified list.
 /// </summary>
 /// <param name="options">The options for the request to the API.</param>
 /// <returns>An instance of <see cref="SocialHttpResponse"/> representing the raw response.</returns>
 /// <see>
 ///     <cref>https://developer.twitter.com/en/docs/accounts-and-users/create-manage-lists/api-reference/get-lists-members</cref>
 /// </see>
 public SocialHttpResponse GetMembers(TwitterGetMembersOptions options)
 {
     if (options == null)
     {
         throw new ArgumentNullException(nameof(options));
     }
     return(Client.DoHttpGetRequest("https://api.twitter.com/1.1/lists/members.json", options));
 }
 /// <summary>
 /// Gets the members of the list matching the specified <code>options</code>. Private list members will only be
 /// shown if the authenticated user owns the specified list.
 /// </summary>
 /// <param name="options">The options for the call to the API.</param>
 /// <see>
 ///     <cref>https://api.twitter.com/1.1/lists/members.json</cref>
 /// </see>
 public SocialHttpResponse GetMembers(TwitterGetMembersOptions options)
 {
     return(Client.DoHttpGetRequest("https://api.twitter.com/1.1/lists/members.json", options));
 }