home *** CD-ROM | disk | FTP | other *** search
- <?PHP
- /**
- * Get high bidders for a dutch auction.
- *
- * Make sure to call this only on dutch auctions!
- * Otherwise you will get an error.
- *
- * $Id: GetHighBidders.php,v 1.2 2005/01/11 23:49:07 luckec Exp $
- *
- * @package Services_Ebay
- * @author Carsten Lucke <luckec@php.net>
- * @link http://developer.ebay.com/DevZone/docs/API_Doc/Functions/GetHighBidders/GetHighBiddersLogic.htm
- */
- class Services_Ebay_Call_GetHighbidders extends Services_Ebay_Call
- {
- /**
- * verb of the API call
- *
- * @var string
- */
- protected $verb = 'GetHighBidders';
-
- /**
- * parameter map that is used, when scalar parameters are passed
- *
- * @var array
- */
- protected $paramMap = array(
- 'ItemId'
- );
- /**
- * make the API call
- *
- * @param object Services_Ebay_Session
- * @return string
- */
- public function call(Services_Ebay_Session $session)
- {
- $return = parent::call($session);
- $result = Services_Ebay::loadModel('BidList', $return, $session);
- return $result;
- }
- }
- ?>