private static Request BuildDeleteRequest(DeletePhoneNumberOptions options, ITwilioRestClient client)
 {
     return(new Request(
                HttpMethod.Delete,
                Rest.Domain.Proxy,
                "/v1/Services/" + options.PathServiceSid + "/PhoneNumbers/" + options.PathSid + "",
                queryParams: options.GetParams()
                ));
 }