Subversion-Projekte lars-tiefland.content-management

Revision

Blame | Letzte Änderung | Log anzeigen | RSS feed

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

/**
 * Details about a region or location to which the seller is willing to ship. 
 *
 * @link http://developer.ebay.com/DevZone/XML/docs/Reference/eBay/types/ShippingLocationDetailsType.html
 *
 */
class ShippingLocationDetailsType extends EbatNs_ComplexType
{
        /**
         * @var string
         */
        protected $ShippingLocation;
        /**
         * @var string
         */
        protected $Description;
        /**
         * @var string
         */
        protected $DetailVersion;
        /**
         * @var dateTime
         */
        protected $UpdateTime;

        /**
         * @return string
         */
        function getShippingLocation()
        {
                return $this->ShippingLocation;
        }
        /**
         * @return void
         * @param string $value 
         */
        function setShippingLocation($value)
        {
                $this->ShippingLocation = $value;
        }
        /**
         * @return string
         */
        function getDescription()
        {
                return $this->Description;
        }
        /**
         * @return void
         * @param string $value 
         */
        function setDescription($value)
        {
                $this->Description = $value;
        }
        /**
         * @return string
         */
        function getDetailVersion()
        {
                return $this->DetailVersion;
        }
        /**
         * @return void
         * @param string $value 
         */
        function setDetailVersion($value)
        {
                $this->DetailVersion = $value;
        }
        /**
         * @return dateTime
         */
        function getUpdateTime()
        {
                return $this->UpdateTime;
        }
        /**
         * @return void
         * @param dateTime $value 
         */
        function setUpdateTime($value)
        {
                $this->UpdateTime = $value;
        }
        /**
         * @return 
         */
        function __construct()
        {
                parent::__construct('ShippingLocationDetailsType', 'urn:ebay:apis:eBLBaseComponents');
                if (!isset(self::$_elements[__CLASS__]))
                                self::$_elements[__CLASS__] = array_merge(self::$_elements[get_parent_class()],
                                array(
                                        'ShippingLocation' =>
                                        array(
                                                'required' => false,
                                                'type' => 'string',
                                                'nsURI' => 'http://www.w3.org/2001/XMLSchema',
                                                'array' => false,
                                                'cardinality' => '0..1'
                                        ),
                                        'Description' =>
                                        array(
                                                'required' => false,
                                                'type' => 'string',
                                                'nsURI' => 'http://www.w3.org/2001/XMLSchema',
                                                'array' => false,
                                                'cardinality' => '0..1'
                                        ),
                                        'DetailVersion' =>
                                        array(
                                                'required' => false,
                                                'type' => 'string',
                                                'nsURI' => 'http://www.w3.org/2001/XMLSchema',
                                                'array' => false,
                                                'cardinality' => '0..1'
                                        ),
                                        'UpdateTime' =>
                                        array(
                                                'required' => false,
                                                'type' => 'dateTime',
                                                'nsURI' => 'http://www.w3.org/2001/XMLSchema',
                                                'array' => false,
                                                'cardinality' => '0..1'
                                        )
                                ));
        }
}
?>