Source for file AddItem.php
Documentation is available at AddItem.php
* $Id: AddItem.php,v 1.4 2004/11/16 19:34:05 schst Exp $
* @author Stephan Schmidt <schst@php.net>
protected $verb = 'AddItem';
* parameter map that is used, when scalar parameters are passed
* options that will be passed to the serializer
* default parameters that will be used when
'CheckoutDetailsSpecified' => 0 ,
* item that should be added
* @var object Services_Ebay_Model_Item
* set the item that should be added
* @param Services_Ebay_Model_Item
public function setItem(Services_Ebay_Model_Item $item)
* @param object Services_Ebay_Session
public function call(Services_Ebay_Session $session)
$return = parent ::call($session);
if (isset ($return['Item'])) {
$returnItem = $return['Item'];
$this->item->Id = $returnItem['Id'];
$this->item->StartTime = $returnItem['StartTime'];
$this->item->EndTime = $returnItem['EndTime'];
$this->item->Fees = $returnItem['Fees'];
Documentation generated on Mon, 11 Mar 2019 13:58:45 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.
|