Blame | Letzte Änderung | Log anzeigen | RSS feed
<?php// autogenerated file 22.07.2011 09:27// $Id: $// $Log: $////require_once 'AttributeType.php';require_once 'EbatNs_ComplexType.php';/*** A set of salient aspects or features that describe an item in a standardized* way.Most commonly used in the Item Specifics section of a listing.See the* Developer's Guide information onworking with Item Specifics and Pre-filled Item* Information.See the Developer's Guide for information aboutcharacteristics* meta-data and how to determine when attributes are required.** @link http://developer.ebay.com/DevZone/XML/docs/Reference/eBay/types/AttributeSetType.html**/class AttributeSetType extends EbatNs_ComplexType{/*** @var AttributeType*/protected $Attribute;/*** @return AttributeType* @param integer $index*/function getAttribute($index = null){if ($index !== null) {return $this->Attribute[$index];} else {return $this->Attribute;}}/*** @return void* @param AttributeType $value* @param $index*/function setAttribute($value, $index = null){if ($index !== null) {$this->Attribute[$index] = $value;} else {$this->Attribute = $value;}}/*** @return void* @param AttributeType $value*/function addAttribute($value){$this->Attribute[] = $value;}/*** @return*/function __construct(){parent::__construct('AttributeSetType', 'http://www.w3.org/2001/XMLSchema');if (!isset(self::$_elements[__CLASS__]))self::$_elements[__CLASS__] = array_merge(self::$_elements[get_parent_class()],array('Attribute' =>array('required' => false,'type' => 'AttributeType','nsURI' => 'urn:ebay:apis:eBLBaseComponents','array' => true,'cardinality' => '0..*'))); $this->_attributes = array_merge($this->_attributes,array('attributeSetID' =>array('name' => 'attributeSetID','type' => 'int','use' => 'required'),'attributeSetVersion' =>array('name' => 'attributeSetVersion','type' => 'string','use' => 'required')));}}?>