Subversion-Projekte lars-tiefland.content-management

Revision

Blame | Letzte Änderung | Log anzeigen | RSS feed

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

class LiveAuctionBidType extends EbatNs_ComplexType
{
        // start props
        // @var AmountType $RequestedBiddingLimit
        var $RequestedBiddingLimit;
        // @var BidderStatusCodeType $BidderStatus
        var $BidderStatus;
        // @var AmountType $ApprovedBiddingLimit
        var $ApprovedBiddingLimit;
        // @var string $DeclinedComment
        var $DeclinedComment;
        // end props

/**
 *

 * @return AmountType
 */
        function getRequestedBiddingLimit()
        {
                return $this->RequestedBiddingLimit;
        }
/**
 *

 * @return void
 * @param  $value 
 */
        function setRequestedBiddingLimit($value)
        {
                $this->RequestedBiddingLimit = $value;
        }
/**
 *

 * @return BidderStatusCodeType
 */
        function getBidderStatus()
        {
                return $this->BidderStatus;
        }
/**
 *

 * @return void
 * @param  $value 
 */
        function setBidderStatus($value)
        {
                $this->BidderStatus = $value;
        }
/**
 *

 * @return AmountType
 */
        function getApprovedBiddingLimit()
        {
                return $this->ApprovedBiddingLimit;
        }
/**
 *

 * @return void
 * @param  $value 
 */
        function setApprovedBiddingLimit($value)
        {
                $this->ApprovedBiddingLimit = $value;
        }
/**
 *

 * @return string
 */
        function getDeclinedComment()
        {
                return $this->DeclinedComment;
        }
/**
 *

 * @return void
 * @param  $value 
 */
        function setDeclinedComment($value)
        {
                $this->DeclinedComment = $value;
        }
/**
 *

 * @return 
 */
        function LiveAuctionBidType()
        {
                $this->EbatNs_ComplexType('LiveAuctionBidType', 'urn:ebay:apis:eBLBaseComponents');
                $this->_elements = array_merge($this->_elements,
                        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'
                                )
                        ));

        }
}
?>