Source for file GetItemTransactions.php
Documentation is available at GetItemTransactions.php
* Get all transactions for an item
* @author Stephan Schmidt <schst@php.net>
* @link http://developer.ebay.com/DevZone/docs/API_Doc/Functions/GetItemTransactions/GetItemTransactionsLogic.htm
* @todo create a model for the result set
protected $verb = 'GetItemTransactions';
* parameter map that is used, when scalar parameters are passed
* @param object Services_Ebay_Session
public function call(Services_Ebay_Session $session)
$this->args['PaginationType'] = array ();
if ($param == 'TransactionsPerPage' || $param == 'PageNumber') {
if (!isset ($this->args[$param])) {
$this->args['PaginationType'][$param] = $this->args[$param];
unset ( $this->args[$param] );
$return = parent ::call($session);
Documentation generated on Mon, 11 Mar 2019 15:49:47 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.
|