/// <summary>
        /// Cancel the HostedNumberOrder (only available when the status is in `received`).
        /// </summary>
        ///
        /// <param name="options"> Delete HostedNumberOrder parameters </param>
        /// <param name="client"> Client to make requests to Twilio </param>
        /// <returns> A single instance of HostedNumberOrder </returns>
        public static bool Delete(DeleteHostedNumberOrderOptions options, ITwilioRestClient client = null)
        {
            client = client ?? TwilioClient.GetRestClient();
            var response = client.Request(BuildDeleteRequest(options, client));

            return(response.StatusCode == System.Net.HttpStatusCode.NoContent);
        }
        /// <summary>
        /// Cancel the HostedNumberOrder (only available when the status is in `received`).
        /// </summary>
        ///
        /// <param name="options"> Delete HostedNumberOrder parameters </param>
        /// <param name="client"> Client to make requests to Twilio </param>
        /// <returns> Task that resolves to A single instance of HostedNumberOrder </returns>
        public static async System.Threading.Tasks.Task <bool> DeleteAsync(DeleteHostedNumberOrderOptions options, ITwilioRestClient client = null)
        {
            client = client ?? TwilioClient.GetRestClient();
            var response = await client.RequestAsync(BuildDeleteRequest(options, client));

            return(response.StatusCode == System.Net.HttpStatusCode.NoContent);
        }
 private static Request BuildDeleteRequest(DeleteHostedNumberOrderOptions options, ITwilioRestClient client)
 {
     return new Request(
         HttpMethod.Delete,
         Rest.Domain.Preview,
         "/HostedNumbers/HostedNumberOrders/" + options.PathSid + "",
         queryParams: options.GetParams()
     );
 }
        /// <summary>
        /// Cancel the HostedNumberOrder (only available when the status is in `received`).
        /// </summary>
        ///
        /// <param name="pathSid"> HostedNumberOrder sid. </param>
        /// <param name="client"> Client to make requests to Twilio </param>
        /// <returns> Task that resolves to A single instance of HostedNumberOrder </returns>
        public static async System.Threading.Tasks.Task <bool> DeleteAsync(string pathSid, ITwilioRestClient client = null)
        {
            var options = new DeleteHostedNumberOrderOptions(pathSid);

            return(await DeleteAsync(options, client));
        }
        /// <summary>
        /// Cancel the HostedNumberOrder (only available when the status is in `received`).
        /// </summary>
        ///
        /// <param name="pathSid"> HostedNumberOrder sid. </param>
        /// <param name="client"> Client to make requests to Twilio </param>
        /// <returns> A single instance of HostedNumberOrder </returns>
        public static bool Delete(string pathSid, ITwilioRestClient client = null)
        {
            var options = new DeleteHostedNumberOrderOptions(pathSid);

            return(Delete(options, client));
        }