Subversion-Projekte lars-tiefland.content-management

Revision

Blame | Letzte Änderung | Log anzeigen | RSS feed

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

/**
 * This container is designed to return all order line items related to 
 * specificmultiple-item, fixed-price listings. Additionally, a SKU filter can be 
 * used toreturn all order line items related to a specific product or variation of 
 * anitem. 
 *
 * @link http://developer.ebay.com/DevZone/XML/docs/Reference/eBay/types/ItemTransactionIDType.html
 *
 */
class ItemTransactionIDType extends EbatNs_ComplexType
{
        /**
         * @var ItemIDType
         */
        protected $ItemID;
        /**
         * @var string
         */
        protected $TransactionID;
        /**
         * @var SKUType
         */
        protected $SKU;
        /**
         * @var string
         */
        protected $OrderLineItemID;

        /**
         * @return ItemIDType
         */
        function getItemID()
        {
                return $this->ItemID;
        }
        /**
         * @return void
         * @param ItemIDType $value 
         */
        function setItemID($value)
        {
                $this->ItemID = $value;
        }
        /**
         * @return string
         */
        function getTransactionID()
        {
                return $this->TransactionID;
        }
        /**
         * @return void
         * @param string $value 
         */
        function setTransactionID($value)
        {
                $this->TransactionID = $value;
        }
        /**
         * @return SKUType
         */
        function getSKU()
        {
                return $this->SKU;
        }
        /**
         * @return void
         * @param SKUType $value 
         */
        function setSKU($value)
        {
                $this->SKU = $value;
        }
        /**
         * @return string
         */
        function getOrderLineItemID()
        {
                return $this->OrderLineItemID;
        }
        /**
         * @return void
         * @param string $value 
         */
        function setOrderLineItemID($value)
        {
                $this->OrderLineItemID = $value;
        }
        /**
         * @return 
         */
        function __construct()
        {
                parent::__construct('ItemTransactionIDType', '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'
                                        ),
                                        'TransactionID' =>
                                        array(
                                                'required' => false,
                                                'type' => 'string',
                                                'nsURI' => 'http://www.w3.org/2001/XMLSchema',
                                                'array' => false,
                                                'cardinality' => '0..1'
                                        ),
                                        'SKU' =>
                                        array(
                                                'required' => false,
                                                'type' => 'SKUType',
                                                'nsURI' => 'urn:ebay:apis:eBLBaseComponents',
                                                'array' => false,
                                                'cardinality' => '0..1'
                                        ),
                                        'OrderLineItemID' =>
                                        array(
                                                'required' => false,
                                                'type' => 'string',
                                                'nsURI' => 'http://www.w3.org/2001/XMLSchema',
                                                'array' => false,
                                                'cardinality' => '0..1'
                                        )
                                ));
        }
}
?>