/**
  * sample_GetUsetDisputes::dispatchCall()
  * 
  * Dispatch the call
  *
  * @param array $params array of parameters for the eBay API call
  * 
  * @return boolean success
  */
 public function dispatchCall($params)
 {
     $req = new GetUserDisputesRequestType();
     $Pagination = new PaginationType();
     $Pagination->setPageNumber($params['PageNumber']);
     $req->setPagination($Pagination);
     $res = $this->proxy->GetUserDisputes($req);
     if ($this->testValid($res)) {
         $this->dumpObject($res);
         return true;
     } else {
         return false;
     }
 }
 /**
  * @return GetUserDisputesResponseType
  * @param GetUserDisputesRequestType $request 
  */
 function GetUserDisputes($request)
 {
     $request->setVersion(EBAY_WSDL_VERSION);
     return $this->call('GetUserDisputes', $request);
 }