/// <remarks/>
 public void DeleteCustomerShippingAddressAsync(DeleteCustomerShippingAddressRequestData request) {
     this.DeleteCustomerShippingAddressAsync(request, null);
 }
 /// <remarks/>
 public void DeleteCustomerShippingAddressAsync(DeleteCustomerShippingAddressRequestData request, object userState) {
     if ((this.DeleteCustomerShippingAddressOperationCompleted == null)) {
         this.DeleteCustomerShippingAddressOperationCompleted = new System.Threading.SendOrPostCallback(this.OnDeleteCustomerShippingAddressOperationCompleted);
     }
     this.InvokeAsync("DeleteCustomerShippingAddress", new object[] {
                 request}, this.DeleteCustomerShippingAddressOperationCompleted, userState);
 }
 public DeleteCustomerShippingAddressResponseData DeleteCustomerShippingAddress(DeleteCustomerShippingAddressRequestData request) {
     object[] results = this.Invoke("DeleteCustomerShippingAddress", new object[] {
                 request});
     return ((DeleteCustomerShippingAddressResponseData)(results[0]));
 }