Blame | Letzte Änderung | Log anzeigen | RSS feed
<?php// autogenerated file 22.07.2011 09:27// $Id: $// $Log: $////require_once 'VeROReportItemType.php';require_once 'EbatNs_ComplexType.php';/*** Container for a list of items. Can contain zero, one, or* multipleReportedItemsType objects, each of which conveys the data for one item* listing.** @link http://developer.ebay.com/DevZone/XML/docs/Reference/eBay/types/VeROReportItemsType.html**/class VeROReportItemsType extends EbatNs_ComplexType{/*** @var VeROReportItemType*/protected $ReportItem;/*** @return VeROReportItemType* @param integer $index*/function getReportItem($index = null){if ($index !== null) {return $this->ReportItem[$index];} else {return $this->ReportItem;}}/*** @return void* @param VeROReportItemType $value* @param $index*/function setReportItem($value, $index = null){if ($index !== null) {$this->ReportItem[$index] = $value;} else {$this->ReportItem = $value;}}/*** @return void* @param VeROReportItemType $value*/function addReportItem($value){$this->ReportItem[] = $value;}/*** @return*/function __construct(){parent::__construct('VeROReportItemsType', 'urn:ebay:apis:eBLBaseComponents');if (!isset(self::$_elements[__CLASS__]))self::$_elements[__CLASS__] = array_merge(self::$_elements[get_parent_class()],array('ReportItem' =>array('required' => false,'type' => 'VeROReportItemType','nsURI' => 'urn:ebay:apis:eBLBaseComponents','array' => true,'cardinality' => '0..*')));}}?>