* Uncomment to try out Mock Service that simulates MWSSubscriptionsService
 * responses without calling MWSSubscriptionsService service.
 *
 * Responses are loaded from local XML files. You can tweak XML files to
 * experiment with various outputs during development
 *
 * XML files available under MWSSubscriptionsService/Mock tree
 *
 ***********************************************************************/
// $service = new MWSSubscriptionsService_Mock();
/************************************************************************
 * Setup request parameters and uncomment invoke to try out
 * sample for Deregister Destination Action
 ***********************************************************************/
// @TODO: set request. Action can be passed as MWSSubscriptions_Model_DeregisterDestination
$request = new MWSSubscriptions_Model_DeregisterDestinationInput();
$request->setSellerId(MERCHANT_ID);
// object or array of parameters
invokeDeregisterDestination($service, $request);
/**
 * Get Deregister Destination Action Sample
 * Gets competitive pricing and related information for a product identified by
 * the MarketplaceId and ASIN.
 *
 * @param MWSSubscriptionsService_Interface $service instance of MWSSubscriptionsService_Interface
 * @param mixed $request MWSSubscriptions_Model_DeregisterDestination or array of parameters
 */
function invokeDeregisterDestination(MWSSubscriptionsService_Interface $service, $request)
{
    try {
        $response = $service->DeregisterDestination($request);
 /**
  * Deregister Destination
  * Delete a destination.
  *
  * @param mixed $request array of parameters for MWSSubscriptions_Model_DeregisterDestination request or MWSSubscriptions_Model_DeregisterDestination object itself
  * @see MWSSubscriptions_Model_DeregisterDestinationInput
  * @return MWSSubscriptions_Model_DeregisterDestinationResponse
  *
  * @throws Subscriptions_Exception
  */
 public function deregisterDestination($request)
 {
     if (!$request instanceof Model\MWSSubscriptions_Model_DeregisterDestinationInput) {
         //require_once (dirname(__FILE__) . '/Model/DeregisterDestinationInput.php');
         $request = new MWSSubscriptions_Model_DeregisterDestinationInput($request);
     }
     $parameters = $request->toQueryParameterArray();
     $parameters['Action'] = 'DeregisterDestination';
     $httpResponse = $this->_invoke($parameters);
     //require_once (dirname(__FILE__) . '/Model/DeregisterDestinationResponse.php');
     $response = Model\MWSSubscriptions_Model_DeregisterDestinationResponse::fromXML($httpResponse['ResponseBody']);
     $response->setResponseHeaderMetadata($httpResponse['ResponseHeaderMetadata']);
     return $response;
 }