Subversion-Projekte lars-tiefland.content-management

Revision

Blame | Letzte Änderung | Log anzeigen | RSS feed

<?php
// autogenerated file 22.07.2011 09:27
// $Id: VeROReportItemType.php 4066 2011-11-03 08:13:59Z tiefland $
// $Log: $
//
//
require_once 'CountryCodeType.php';
require_once 'EbatNs_ComplexType.php';
require_once 'ShippingRegionCodeType.php';
require_once 'ItemIDType.php';

/**
 * Contains the item information to report. 
 *
 * @link http://developer.ebay.com/DevZone/XML/docs/Reference/eBay/types/VeROReportItemType.html
 *
 */
class VeROReportItemType extends EbatNs_ComplexType
{
        /**
         * @var ItemIDType
         */
        protected $ItemID;
        /**
         * @var long
         */
        protected $VeROReasonCodeID;
        /**
         * @var string
         */
        protected $MessageToSeller;
        /**
         * @var boolean
         */
        protected $CopyEmailToRightsOwner;
        /**
         * @var ShippingRegionCodeType
         */
        protected $Region;
        /**
         * @var CountryCodeType
         */
        protected $Country;
        /**
         * @var string
         */
        protected $Patent;
        /**
         * @var string
         */
        protected $DetailedMessage;

        /**
         * @return ItemIDType
         */
        function getItemID()
        {
                return $this->ItemID;
        }
        /**
         * @return void
         * @param ItemIDType $value 
         */
        function setItemID($value)
        {
                $this->ItemID = $value;
        }
        /**
         * @return long
         */
        function getVeROReasonCodeID()
        {
                return $this->VeROReasonCodeID;
        }
        /**
         * @return void
         * @param long $value 
         */
        function setVeROReasonCodeID($value)
        {
                $this->VeROReasonCodeID = $value;
        }
        /**
         * @return string
         */
        function getMessageToSeller()
        {
                return $this->MessageToSeller;
        }
        /**
         * @return void
         * @param string $value 
         */
        function setMessageToSeller($value)
        {
                $this->MessageToSeller = $value;
        }
        /**
         * @return boolean
         */
        function getCopyEmailToRightsOwner()
        {
                return $this->CopyEmailToRightsOwner;
        }
        /**
         * @return void
         * @param boolean $value 
         */
        function setCopyEmailToRightsOwner($value)
        {
                $this->CopyEmailToRightsOwner = $value;
        }
        /**
         * @return ShippingRegionCodeType
         * @param integer $index 
         */
        function getRegion($index = null)
        {
                if ($index !== null) {
                        return $this->Region[$index];
                } else {
                        return $this->Region;
                }
        }
        /**
         * @return void
         * @param ShippingRegionCodeType $value 
         * @param  $index 
         */
        function setRegion($value, $index = null)
        {
                if ($index !== null) {
                        $this->Region[$index] = $value;
                } else {
                        $this->Region = $value;
                }
        }
        /**
         * @return void
         * @param ShippingRegionCodeType $value 
         */
        function addRegion($value)
        {
                $this->Region[] = $value;
        }
        /**
         * @return CountryCodeType
         * @param integer $index 
         */
        function getCountry($index = null)
        {
                if ($index !== null) {
                        return $this->Country[$index];
                } else {
                        return $this->Country;
                }
        }
        /**
         * @return void
         * @param CountryCodeType $value 
         * @param  $index 
         */
        function setCountry($value, $index = null)
        {
                if ($index !== null) {
                        $this->Country[$index] = $value;
                } else {
                        $this->Country = $value;
                }
        }
        /**
         * @return void
         * @param CountryCodeType $value 
         */
        function addCountry($value)
        {
                $this->Country[] = $value;
        }
        /**
         * @return string
         */
        function getPatent()
        {
                return $this->Patent;
        }
        /**
         * @return void
         * @param string $value 
         */
        function setPatent($value)
        {
                $this->Patent = $value;
        }
        /**
         * @return string
         */
        function getDetailedMessage()
        {
                return $this->DetailedMessage;
        }
        /**
         * @return void
         * @param string $value 
         */
        function setDetailedMessage($value)
        {
                $this->DetailedMessage = $value;
        }
        /**
         * @return 
         */
        function __construct()
        {
                parent::__construct('VeROReportItemType', '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'
                                        ),
                                        'VeROReasonCodeID' =>
                                        array(
                                                'required' => false,
                                                'type' => 'long',
                                                'nsURI' => 'http://www.w3.org/2001/XMLSchema',
                                                'array' => false,
                                                'cardinality' => '0..1'
                                        ),
                                        'MessageToSeller' =>
                                        array(
                                                'required' => false,
                                                'type' => 'string',
                                                'nsURI' => 'http://www.w3.org/2001/XMLSchema',
                                                'array' => false,
                                                'cardinality' => '0..1'
                                        ),
                                        'CopyEmailToRightsOwner' =>
                                        array(
                                                'required' => false,
                                                'type' => 'boolean',
                                                'nsURI' => 'http://www.w3.org/2001/XMLSchema',
                                                'array' => false,
                                                'cardinality' => '0..1'
                                        ),
                                        'Region' =>
                                        array(
                                                'required' => false,
                                                'type' => 'ShippingRegionCodeType',
                                                'nsURI' => 'urn:ebay:apis:eBLBaseComponents',
                                                'array' => true,
                                                'cardinality' => '0..*'
                                        ),
                                        'Country' =>
                                        array(
                                                'required' => false,
                                                'type' => 'CountryCodeType',
                                                'nsURI' => 'urn:ebay:apis:eBLBaseComponents',
                                                'array' => true,
                                                'cardinality' => '0..*'
                                        ),
                                        'Patent' =>
                                        array(
                                                'required' => false,
                                                'type' => 'string',
                                                'nsURI' => 'http://www.w3.org/2001/XMLSchema',
                                                'array' => false,
                                                'cardinality' => '0..1'
                                        ),
                                        'DetailedMessage' =>
                                        array(
                                                'required' => false,
                                                'type' => 'string',
                                                'nsURI' => 'http://www.w3.org/2001/XMLSchema',
                                                'array' => false,
                                                'cardinality' => '0..1'
                                        )
                                ));
        }
}
?>