Services_Ebay
[ class tree: Services_Ebay ] [ index: Services_Ebay ] [ all elements ]

Source for file GetHighBidders.php

Documentation is available at GetHighBidders.php

  1. <?PHP
  2. /**
  3.  * Get high bidders for a dutch auction.
  4.  * 
  5.  * Make sure to call this only on dutch auctions!
  6.  * Otherwise you will get an error.
  7.  *
  8.  * $Id$
  9.  *
  10.  * @package Services_Ebay
  11.  * @author  Carsten Lucke <luckec@php.net>
  12.  * @link    http://developer.ebay.com/DevZone/docs/API_Doc/Functions/GetHighBidders/GetHighBiddersLogic.htm
  13.  */
  14. {
  15.    /**
  16.     * verb of the API call
  17.     *
  18.     * @var  string 
  19.     */
  20.     protected $verb = 'GetHighBidders';
  21.  
  22.    /**
  23.     * parameter map that is used, when scalar parameters are passed
  24.     *
  25.     * @var  array 
  26.     */
  27.     protected $paramMap = array(
  28.                                  'ItemId'
  29.                                 );
  30.    /**
  31.     * make the API call
  32.     *
  33.     * @param    object Services_Ebay_Session 
  34.     * @return   string 
  35.     */
  36.     public function call(Services_Ebay_Session $session)
  37.     {
  38.         $return = parent::call($session);
  39.         $result Services_Ebay::loadModel('BidList'$return$session);
  40.         return $result;
  41.     }
  42. }
  43. ?>

Documentation generated on Mon, 11 Mar 2019 15:49:47 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.