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

Source for file GetUserDisputes.php

Documentation is available at GetUserDisputes.php

  1. <?PHP
  2. /**
  3.  * Get a all disputes the where the current user is either seller or buyer
  4.  *
  5.  * $Id$
  6.  *
  7.  * @package Services_Ebay
  8.  * @author  Stephan Schmidt <schst@php.net>
  9.  * @link    http://developer.ebay.com/DevZone/docs/API_Doc/Functions/GetUserDisputes/GetUserDisputesLogic.htm
  10.  * @todo    parse the correct filters from the response
  11.  */
  12. {
  13.    /**
  14.     * verb of the API call
  15.     *
  16.     * @var  string 
  17.     */
  18.     protected $verb = 'GetUserDisputes';
  19.  
  20.    /**
  21.     * compatibility level this method was introduced
  22.     *
  23.     * @var  integer 
  24.     */
  25.     protected $since = 361;
  26.     
  27.    /**
  28.     * arguments of the call
  29.     *
  30.     * @var  array 
  31.     */
  32.     protected $args = array(
  33.                             'Pagination' => array(
  34.                                                     'PageNumber' => '1'
  35.                                                 )
  36.                         );
  37.    /**
  38.     * parameter map that is used, when scalar parameters are passed
  39.     *
  40.     * @var  array 
  41.     */
  42.     protected $paramMap = array(
  43.                                  'DisputeFilterType',
  44.                                  'DisputeSortType',
  45.                                 );
  46.     
  47.    /**
  48.     * make the API call
  49.     *
  50.     * @param    object Services_Ebay_Session 
  51.     * @return   string 
  52.     */
  53.     public function call(Services_Ebay_Session $session)
  54.     {
  55.         $return = parent::call($session);
  56.         return Services_Ebay::loadModel('DisputeList'$return$session);
  57.     }
  58. }
  59. ?>

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