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 'AbstractResponseType.php';
require_once 'PaginationResultType.php';
require_once 'WantItNowPostArrayType.php';

/**
 * Response contains the Want It Now posts that have the specified keyword(s) in 
 * thetitle and (optionally) the description. 
 *
 * @link http://developer.ebay.com/DevZone/XML/docs/Reference/eBay/types/GetWantItNowSearchResultsResponseType.html
 *
 */
class GetWantItNowSearchResultsResponseType extends AbstractResponseType
{
        /**
         * @var WantItNowPostArrayType
         */
        protected $WantItNowPostArray;
        /**
         * @var boolean
         */
        protected $HasMoreItems;
        /**
         * @var int
         */
        protected $ItemsPerPage;
        /**
         * @var int
         */
        protected $PageNumber;
        /**
         * @var PaginationResultType
         */
        protected $PaginationResult;

        /**
         * @return WantItNowPostArrayType
         */
        function getWantItNowPostArray()
        {
                return $this->WantItNowPostArray;
        }
        /**
         * @return void
         * @param WantItNowPostArrayType $value 
         */
        function setWantItNowPostArray($value)
        {
                $this->WantItNowPostArray = $value;
        }
        /**
         * @return boolean
         */
        function getHasMoreItems()
        {
                return $this->HasMoreItems;
        }
        /**
         * @return void
         * @param boolean $value 
         */
        function setHasMoreItems($value)
        {
                $this->HasMoreItems = $value;
        }
        /**
         * @return int
         */
        function getItemsPerPage()
        {
                return $this->ItemsPerPage;
        }
        /**
         * @return void
         * @param int $value 
         */
        function setItemsPerPage($value)
        {
                $this->ItemsPerPage = $value;
        }
        /**
         * @return int
         */
        function getPageNumber()
        {
                return $this->PageNumber;
        }
        /**
         * @return void
         * @param int $value 
         */
        function setPageNumber($value)
        {
                $this->PageNumber = $value;
        }
        /**
         * @return PaginationResultType
         */
        function getPaginationResult()
        {
                return $this->PaginationResult;
        }
        /**
         * @return void
         * @param PaginationResultType $value 
         */
        function setPaginationResult($value)
        {
                $this->PaginationResult = $value;
        }
        /**
         * @return 
         */
        function __construct()
        {
                parent::__construct('GetWantItNowSearchResultsResponseType', 'urn:ebay:apis:eBLBaseComponents');
                if (!isset(self::$_elements[__CLASS__]))
                                self::$_elements[__CLASS__] = array_merge(self::$_elements[get_parent_class()],
                                array(
                                        'WantItNowPostArray' =>
                                        array(
                                                'required' => false,
                                                'type' => 'WantItNowPostArrayType',
                                                'nsURI' => 'urn:ebay:apis:eBLBaseComponents',
                                                'array' => false,
                                                'cardinality' => '0..1'
                                        ),
                                        'HasMoreItems' =>
                                        array(
                                                'required' => false,
                                                'type' => 'boolean',
                                                'nsURI' => 'http://www.w3.org/2001/XMLSchema',
                                                'array' => false,
                                                'cardinality' => '0..1'
                                        ),
                                        'ItemsPerPage' =>
                                        array(
                                                'required' => false,
                                                'type' => 'int',
                                                'nsURI' => 'http://www.w3.org/2001/XMLSchema',
                                                'array' => false,
                                                'cardinality' => '0..1'
                                        ),
                                        'PageNumber' =>
                                        array(
                                                'required' => false,
                                                'type' => 'int',
                                                'nsURI' => 'http://www.w3.org/2001/XMLSchema',
                                                'array' => false,
                                                'cardinality' => '0..1'
                                        ),
                                        'PaginationResult' =>
                                        array(
                                                'required' => false,
                                                'type' => 'PaginationResultType',
                                                'nsURI' => 'urn:ebay:apis:eBLBaseComponents',
                                                'array' => false,
                                                'cardinality' => '0..1'
                                        )
                                ));
        }
}
?>