Source for file User.php
Documentation is available at User.php
* @author Stephan Schmidt <schst@php.net>
* property that stores the unique identifier (=pk) of the model
* get the feedback for the user
* @param int Detail Level
* @param int starting page
* @param int items per page
* @link http://developer.ebay.com/DevZone/docs/API_Doc/Functions/GetFeedback/GetFeedback.htm
public function GetFeedback($DetailLevel = Services_Ebay ::FEEDBACK_BRIEF , $StartingPage = 1 , $ItemsPerPage = 25 )
'StartingPage' => $StartingPage,
'ItemsPerPage' => $ItemsPerPage,
'DetailLevel' => $DetailLevel
return $call->call ($this->session);
* get the list of items the user is selling
* @param array all arguments
* @link http://developer.ebay.com/DevZone/docs/API_Doc/Functions/GetSellerList/GetSellerList.htm
return $call->call ($this->session);
* get list of items on which the user is/has been bidding
* @link http://developer.ebay.com/DevZone/docs/API_Doc/Functions/GetBidderList/GetBidderList.htm
public function GetBidderList($Active = 1 , $DetailLevel = 32 , $Days = null , $EndTimeFrom = null , $EndTimeTo = null )
'EndTimeFrom' => $EndTimeFrom,
'EndTimeTo' => $EndTimeTo
return $call->call ($this->session);
* leave feedback for the user
* @param array all arguments
* @link http://developer.ebay.com/DevZone/docs/API_Doc/Functions/LeaveFeedback/LeaveFeedbackLogic.htm
public function LeaveFeedback($ItemId, $CommentType, $Comment, $TransactionId = null )
'CommentType' => $CommentType,
$args['TransactionId'] = $TransactionId;
return $call->call ($this->session);
Documentation generated on Mon, 11 Mar 2019 13:58:48 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.
|