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 'BidderStatusCodeType.php';
require_once 'EbatNs_ComplexType.php';
require_once 'AmountType.php';

/**
 * Contains the data for one listing found by a search . 
 *
 * @link http://developer.ebay.com/DevZone/XML/docs/Reference/eBay/types/LiveAuctionBidType.html
 *
 */
class LiveAuctionBidType extends EbatNs_ComplexType
{
        /**
         * @var AmountType
         */
        protected $RequestedBiddingLimit;
        /**
         * @var BidderStatusCodeType
         */
        protected $BidderStatus;
        /**
         * @var AmountType
         */
        protected $ApprovedBiddingLimit;
        /**
         * @var string
         */
        protected $DeclinedComment;

        /**
         * @return AmountType
         */
        function getRequestedBiddingLimit()
        {
                return $this->RequestedBiddingLimit;
        }
        /**
         * @return void
         * @param AmountType $value 
         */
        function setRequestedBiddingLimit($value)
        {
                $this->RequestedBiddingLimit = $value;
        }
        /**
         * @return BidderStatusCodeType
         */
        function getBidderStatus()
        {
                return $this->BidderStatus;
        }
        /**
         * @return void
         * @param BidderStatusCodeType $value 
         */
        function setBidderStatus($value)
        {
                $this->BidderStatus = $value;
        }
        /**
         * @return AmountType
         */
        function getApprovedBiddingLimit()
        {
                return $this->ApprovedBiddingLimit;
        }
        /**
         * @return void
         * @param AmountType $value 
         */
        function setApprovedBiddingLimit($value)
        {
                $this->ApprovedBiddingLimit = $value;
        }
        /**
         * @return string
         */
        function getDeclinedComment()
        {
                return $this->DeclinedComment;
        }
        /**
         * @return void
         * @param string $value 
         */
        function setDeclinedComment($value)
        {
                $this->DeclinedComment = $value;
        }
        /**
         * @return 
         */
        function __construct()
        {
                parent::__construct('LiveAuctionBidType', 'urn:ebay:apis:eBLBaseComponents');
                if (!isset(self::$_elements[__CLASS__]))
        self::$_elements[__CLASS__] = array_merge(self::$_elements[get_parent_class()],
                                array(
                                        'RequestedBiddingLimit' =>
                                        array(
                                                'required' => false,
                                                'type' => 'AmountType',
                                                'nsURI' => 'urn:ebay:apis:eBLBaseComponents',
                                                'array' => false,
                                                'cardinality' => '0..1'
                                        ),
                                        'BidderStatus' =>
                                        array(
                                                'required' => false,
                                                'type' => 'BidderStatusCodeType',
                                                'nsURI' => 'urn:ebay:apis:eBLBaseComponents',
                                                'array' => false,
                                                'cardinality' => '0..1'
                                        ),
                                        'ApprovedBiddingLimit' =>
                                        array(
                                                'required' => false,
                                                'type' => 'AmountType',
                                                'nsURI' => 'urn:ebay:apis:eBLBaseComponents',
                                                'array' => false,
                                                'cardinality' => '0..1'
                                        ),
                                        'DeclinedComment' =>
                                        array(
                                                'required' => false,
                                                'type' => 'string',
                                                'nsURI' => 'http://www.w3.org/2001/XMLSchema',
                                                'array' => false,
                                                'cardinality' => '0..1'
                                        )
                                ));

        }
}
?>