Source for file User.php
Documentation is available at User.php
* @author Stephan Schmidt <schst@php.net>
protected $type = 'User';
* 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,
'EntriesPerPage' => $ItemsPerPage
'DetailLevel' => 'ReturnAll'
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 = true , $DetailLevel = 'ReturnAll', $EndTimeFrom = null , $EndTimeTo = null )
'ActiveItemsOnly' => $Active,
'DetailLevel' => 'ReturnAll',
'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);
* Use this to query by a previously set user id
* $user = Services_Ebay::loadModel('User', 'superman-74', $session);
* @see Services_Ebay_Call_GetUser
public function Get($ItemId = null )
$tmp = $call->call ($this->session);
Documentation generated on Mon, 11 Mar 2019 15:49:50 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.
|