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: GetUserDisputes.php,v 1.1 2004/10/28 17:14:53 schst Exp $
  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.     public $since = 361;
  26.     
  27.    /**
  28.     * arguments of the call
  29.     *
  30.     * @var  array 
  31.     */
  32.     protected $args = array(
  33.                             'PageNumber' => '1'
  34.                         );
  35.    /**
  36.     * parameter map that is used, when scalar parameters are passed
  37.     *
  38.     * @var  array 
  39.     */
  40.     protected $paramMap = array(
  41.                                  'DisputeFilter',
  42.                                  'DisputeSortType',
  43.                                  'SortOrder',
  44.                                  'PageNumber'
  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['UserDisputes']$session);
  57.     }
  58. }
  59. ?>

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