Subversion-Projekte lars-tiefland.content-management

Revision

Blame | Letzte Änderung | Log anzeigen | RSS feed

<?php
// autogenerated file 30.08.2007 09:37
// $Id: LiveAuctionApprovalStatusArrayType.php 1182 2009-03-17 12:41:24Z lautsch $
// $Log$
//
require_once 'EbatNs_ComplexType.php';
require_once 'LiveAuctionApprovalStatusType.php';

class LiveAuctionApprovalStatusArrayType extends EbatNs_ComplexType
{
        // start props
        // @var LiveAuctionApprovalStatusType $LiveAuctionStatus
        var $LiveAuctionStatus;
        // end props

/**
 *

 * @return LiveAuctionApprovalStatusType
 * @param  $index 
 */
        function getLiveAuctionStatus($index = null)
        {
                if ($index) {
                return $this->LiveAuctionStatus[$index];
        } else {
                return $this->LiveAuctionStatus;
        }

        }
/**
 *

 * @return void
 * @param  $value 
 * @param  $index 
 */
        function setLiveAuctionStatus($value, $index = null)
        {
                if ($index) {
        $this->LiveAuctionStatus[$index] = $value;
        } else {
        $this->LiveAuctionStatus = $value;
        }

        }
/**
 *

 * @return 
 */
        function LiveAuctionApprovalStatusArrayType()
        {
                $this->EbatNs_ComplexType('LiveAuctionApprovalStatusArrayType', 'urn:ebay:apis:eBLBaseComponents');
                $this->_elements = array_merge($this->_elements,
                        array(
                                'LiveAuctionStatus' =>
                                array(
                                        'required' => false,
                                        'type' => 'LiveAuctionApprovalStatusType',
                                        'nsURI' => 'urn:ebay:apis:eBLBaseComponents',
                                        'array' => true,
                                        'cardinality' => '0..*'
                                )
                        ));

        }
}
?>