Blame | Letzte Änderung | Log anzeigen | RSS feed
<?php// autogenerated file 22.07.2011 09:27// $Id: $// $Log: $////require_once 'AbstractRequestType.php';require_once 'ItemIDType.php';/*** Appends a horizontal rule, then a message about what time theaddition was made* by the seller, and then the seller-specified text.** @link http://developer.ebay.com/DevZone/XML/docs/Reference/eBay/types/AddToItemDescriptionRequestType.html**/class AddToItemDescriptionRequestType extends AbstractRequestType{/*** @var ItemIDType*/protected $ItemID;/*** @var string*/protected $Description;/*** @return ItemIDType*/function getItemID(){return $this->ItemID;}/*** @return void* @param ItemIDType $value*/function setItemID($value){$this->ItemID = $value;}/*** @return string*/function getDescription(){return $this->Description;}/*** @return void* @param string $value*/function setDescription($value){$this->Description = $value;}/*** @return*/function __construct(){parent::__construct('AddToItemDescriptionRequestType', 'urn:ebay:apis:eBLBaseComponents');if (!isset(self::$_elements[__CLASS__]))self::$_elements[__CLASS__] = array_merge(self::$_elements[get_parent_class()],array('ItemID' =>array('required' => false,'type' => 'ItemIDType','nsURI' => 'urn:ebay:apis:eBLBaseComponents','array' => false,'cardinality' => '0..1'),'Description' =>array('required' => false,'type' => 'string','nsURI' => 'http://www.w3.org/2001/XMLSchema','array' => false,'cardinality' => '0..1')));}}?>