Subversion-Projekte lars-tiefland.php_share

Revision

Blame | Letzte Änderung | Log anzeigen | RSS feed

<?php
// autogenerated file 22.07.2011 09:27
// $Id: $
// $Log: $
//
//
require_once 'UserIDType.php';
require_once 'ListingStatusCodeType.php';
require_once 'OfferArrayType.php';
require_once 'AbstractResponseType.php';
require_once 'AmountType.php';

/**
 * Includes the list of bidders for the requested item as part of the general item 
 * listing data. Some bidder information is anonymous, to protect bidders from 
 * fraud. If the seller makes this API call, the actual ids of all bidders on the 
 * seller's item will be returned. If a bidder makes this API call, the bidder's 
 * actual id will be returned. Information for all competing bidders or outside 
 * watchers will be returned as anonymized userIDs. See See <a 
 * href="http://developer.ebay.com/DevZone/XML/docs/WebHelp/index.htm?context=eBay_XML_API&topic=AnonymousUserInfo">Working 
 * with Anonymous User Information</a>in the eBay Web Services Guide for more 
 * information. 
 *
 * @link http://developer.ebay.com/DevZone/XML/docs/Reference/eBay/types/GetAllBiddersResponseType.html
 *
 */
class GetAllBiddersResponseType extends AbstractResponseType
{
        /**
         * @var OfferArrayType
         */
        protected $BidArray;
        /**
         * @var UserIDType
         */
        protected $HighBidder;
        /**
         * @var AmountType
         */
        protected $HighestBid;
        /**
         * @var ListingStatusCodeType
         */
        protected $ListingStatus;

        /**
         * @return OfferArrayType
         */
        function getBidArray()
        {
                return $this->BidArray;
        }
        /**
         * @return void
         * @param OfferArrayType $value 
         */
        function setBidArray($value)
        {
                $this->BidArray = $value;
        }
        /**
         * @return UserIDType
         */
        function getHighBidder()
        {
                return $this->HighBidder;
        }
        /**
         * @return void
         * @param UserIDType $value 
         */
        function setHighBidder($value)
        {
                $this->HighBidder = $value;
        }
        /**
         * @return AmountType
         */
        function getHighestBid()
        {
                return $this->HighestBid;
        }
        /**
         * @return void
         * @param AmountType $value 
         */
        function setHighestBid($value)
        {
                $this->HighestBid = $value;
        }
        /**
         * @return ListingStatusCodeType
         */
        function getListingStatus()
        {
                return $this->ListingStatus;
        }
        /**
         * @return void
         * @param ListingStatusCodeType $value 
         */
        function setListingStatus($value)
        {
                $this->ListingStatus = $value;
        }
        /**
         * @return 
         */
        function __construct()
        {
                parent::__construct('GetAllBiddersResponseType', 'urn:ebay:apis:eBLBaseComponents');
                if (!isset(self::$_elements[__CLASS__]))
                                self::$_elements[__CLASS__] = array_merge(self::$_elements[get_parent_class()],
                                array(
                                        'BidArray' =>
                                        array(
                                                'required' => false,
                                                'type' => 'OfferArrayType',
                                                'nsURI' => 'urn:ebay:apis:eBLBaseComponents',
                                                'array' => false,
                                                'cardinality' => '0..1'
                                        ),
                                        'HighBidder' =>
                                        array(
                                                'required' => false,
                                                'type' => 'UserIDType',
                                                'nsURI' => 'urn:ebay:apis:eBLBaseComponents',
                                                'array' => false,
                                                'cardinality' => '0..1'
                                        ),
                                        'HighestBid' =>
                                        array(
                                                'required' => false,
                                                'type' => 'AmountType',
                                                'nsURI' => 'urn:ebay:apis:eBLBaseComponents',
                                                'array' => false,
                                                'cardinality' => '0..1'
                                        ),
                                        'ListingStatus' =>
                                        array(
                                                'required' => false,
                                                'type' => 'ListingStatusCodeType',
                                                'nsURI' => 'urn:ebay:apis:eBLBaseComponents',
                                                'array' => false,
                                                'cardinality' => '0..1'
                                        )
                                ));
        }
}
?>