Blame | Letzte Änderung | Log anzeigen | RSS feed
<?php// autogenerated file 22.07.2011 09:27// $Id: ItemPolicyViolationType.php 813 2011-11-03 08:31:07Z tiefland $// $Log: $////require_once 'EbatNs_ComplexType.php';/*** Specifies the details of policy violations if the item was administratively* canceled.The details are the policy ID and the policy text.** @link http://developer.ebay.com/DevZone/XML/docs/Reference/eBay/types/ItemPolicyViolationType.html**/class ItemPolicyViolationType extends EbatNs_ComplexType{/*** @var long*/protected $PolicyID;/*** @var string*/protected $PolicyText;/*** @return long*/function getPolicyID(){return $this->PolicyID;}/*** @return void* @param long $value*/function setPolicyID($value){$this->PolicyID = $value;}/*** @return string*/function getPolicyText(){return $this->PolicyText;}/*** @return void* @param string $value*/function setPolicyText($value){$this->PolicyText = $value;}/*** @return*/function __construct(){parent::__construct('ItemPolicyViolationType', 'urn:ebay:apis:eBLBaseComponents');if (!isset(self::$_elements[__CLASS__]))self::$_elements[__CLASS__] = array_merge(self::$_elements[get_parent_class()],array('PolicyID' =>array('required' => false,'type' => 'long','nsURI' => 'http://www.w3.org/2001/XMLSchema','array' => false,'cardinality' => '0..1'),'PolicyText' =>array('required' => false,'type' => 'string','nsURI' => 'http://www.w3.org/2001/XMLSchema','array' => false,'cardinality' => '0..1')));}}?>