private static Request BuildReadRequest(ReadAccountOptions options, ITwilioRestClient client)
 {
     return(new Request(
                HttpMethod.Get,
                Rest.Domain.Api,
                "/2010-04-01/Accounts.json",
                queryParams: options.GetParams()
                ));
 }