* responses without calling FBAInventoryServiceMWS service.
 *
 * Responses are loaded from local XML files. You can tweak XML files to
 * experiment with various outputs during development
 *
 * XML files available under FBAInventoryServiceMWS/Mock tree
 *
 ***********************************************************************/
// $service = new FBAInventoryServiceMWS_Mock();
/************************************************************************
 * Setup request parameters and uncomment invoke to try out
 * sample for List Inventory Supply Action
 ***********************************************************************/
// @TODO: set request. Action can be passed as FbaInventory_Model_ListInventorySupply
$request = new FbaInventory_Model_ListInventorySupplyRequest();
$request->setSellerId(MERCHANT_ID);
// object or array of parameters
invokeListInventorySupply($service, $request);
/**
 * Get List Inventory Supply Action Sample
 * Gets competitive pricing and related information for a product identified by
 * the MarketplaceId and ASIN.
 *
 * @param FBAInventoryServiceMWS_Interface $service instance of FBAInventoryServiceMWS_Interface
 * @param mixed $request FbaInventory_Model_ListInventorySupply or array of parameters
 */
function invokeListInventorySupply(FBAInventoryServiceMWS_Interface $service, $request)
{
    try {
        $response = $service->ListInventorySupply($request);
        echo "Service Response\n";