/** * sample_GetBestOffers::dispatchCall() * * Dispatch the call * * @param array $params array of parameters for the eBay API call * * @return boolean success */ public function dispatchCall($params) { $req = new GetBestOffersRequestType(); $req->setItemID($params['ItemID']); $res = $this->proxy->GetBestOffers($req); if ($this->testValid($res)) { $this->dumpObject($res); return true; } else { return false; } }
/** * @return GetBestOffersResponseType * @param GetBestOffersRequestType $request */ function GetBestOffers($request) { $request->setVersion(EBAY_WSDL_VERSION); return $this->call('GetBestOffers', $request); }