Subversion-Projekte lars-tiefland.php_share

Revision

Blame | Letzte Änderung | Log anzeigen | RSS feed

<?php
// autogenerated file 04.11.2008 16:17
// $Id: $
// $Log: $
//
//
require_once 'FeesType.php';
require_once 'AbstractResponseType.php';
require_once 'ItemIDType.php';

/**
 * Returns the item ID and the estimated fees for the new lot item listing,as well 
 * as the state of the lot item (e.g., categories that changed). 
 *
 * @link http://developer.ebay.com/DevZone/XML/docs/Reference/eBay/types/AddLiveAuctionItemResponseType.html
 *
 */
class AddLiveAuctionItemResponseType extends AbstractResponseType
{
        /**
         * @var ItemIDType
         */
        protected $ItemID;
        /**
         * @var FeesType
         */
        protected $Fees;
        /**
         * @var string
         */
        protected $CategoryID;
        /**
         * @var string
         */
        protected $Category2ID;

        /**
         * @return ItemIDType
         */
        function getItemID()
        {
                return $this->ItemID;
        }
        /**
         * @return void
         * @param ItemIDType $value 
         */
        function setItemID($value)
        {
                $this->ItemID = $value;
        }
        /**
         * @return FeesType
         */
        function getFees()
        {
                return $this->Fees;
        }
        /**
         * @return void
         * @param FeesType $value 
         */
        function setFees($value)
        {
                $this->Fees = $value;
        }
        /**
         * @return string
         */
        function getCategoryID()
        {
                return $this->CategoryID;
        }
        /**
         * @return void
         * @param string $value 
         */
        function setCategoryID($value)
        {
                $this->CategoryID = $value;
        }
        /**
         * @return string
         */
        function getCategory2ID()
        {
                return $this->Category2ID;
        }
        /**
         * @return void
         * @param string $value 
         */
        function setCategory2ID($value)
        {
                $this->Category2ID = $value;
        }
        /**
         * @return 
         */
        function __construct()
        {
                parent::__construct('AddLiveAuctionItemResponseType', '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'
                                        ),
                                        'Fees' =>
                                        array(
                                                'required' => false,
                                                'type' => 'FeesType',
                                                'nsURI' => 'urn:ebay:apis:eBLBaseComponents',
                                                'array' => false,
                                                'cardinality' => '0..1'
                                        ),
                                        'CategoryID' =>
                                        array(
                                                'required' => false,
                                                'type' => 'string',
                                                'nsURI' => 'http://www.w3.org/2001/XMLSchema',
                                                'array' => false,
                                                'cardinality' => '0..1'
                                        ),
                                        'Category2ID' =>
                                        array(
                                                'required' => false,
                                                'type' => 'string',
                                                'nsURI' => 'http://www.w3.org/2001/XMLSchema',
                                                'array' => false,
                                                'cardinality' => '0..1'
                                        )
                                ));

        }
}
?>